-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 877 Bytes
/
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
from setuptools import setup, find_namespace_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='fish_reg',
packages=find_namespace_packages(include=["fish_reg", "fish_reg.*"]),
version='0.0.3',
description='fish video registration software',
url='https://github.com/meglaficus/fish_reg',
author='Jakob Meglič',
author_email='[email protected]',
license='Apache License Version 2.0, January 2004',
install_requires=[
"tqdm",
"SimpleITK",
"SimpleITK-SimpleElastix",
"numpy",
],
entry_points={
'console_scripts': [
'fish_reg_execute = fish_reg.run:main',
]
},
keywords=['elastix', 'zebrafish', 'video', 'registration'],
long_description=long_description
)