-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 821 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
import setuptools
with open('requirements.txt', 'r') as fc:
requirements = [line.strip() for line in fc]
setuptools.setup(
name='CIM',
version='0.0.1',
author='Trevor Lancon',
description='Map images to one another with landmarks and create a script view them in napari.',
long_description='Align a series of images to a single reference using landmarks,'
'then create a napari script to open them in the context of one another. ',
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>3.6',
install_requires=requirements
)