-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
65 lines (58 loc) · 1.41 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
long_description = """
# ABBA-QuPath Registration Exporter
A Python app and Groovy script that helps export transformed cell detections
from ABBA-registered data stored in QuPath projects.
## Installation
```
pip install ABBA-QuPath-RegistrationExporter
```
## Running
```
regexport
```
"""
setup(
name='ABBA-QuPath-RegistrationExporter',
version='0.4.1',
packages=find_packages(),
url='',
license='MIT',
author='Nicholas A. Del Grosso and Estelle Nassar',
author_email='[email protected]',
description='A QuPath-Abba Registration Exporter Application for Mouse Sections',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'matplotlib',
'pandas',
'vtk~=9.0.3',
'vedo~=2021.0.5',
'PySide2',
'treelib~=1.6.1',
'traitlets~=5.1.0',
'bg-atlasapi',
'pyarrow',
],
extras_require={
'dev': [
'pytest_runner',
'pytest',
'pytest-bdd',
'coverage',
'pytest-qt',
'Pillow',
'twine',
],
'ci': [
'pytest-xvfb',
],
},
entry_points={'console_scripts':[
"regexport=regexport.main:main"
]},
package_data={
'regexport': ['qupath_scripts/*.groovy'],
}
)