-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
33 lines (29 loc) · 1.09 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
from setuptools import setup, find_packages
import versioneer
with open('dependencies.txt') as f:
requirements = f.read().splitlines()
requirements = [l for l in requirements if not l.strip().startswith('#')]
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='neuprint-python',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python client utilties for interacting with the neuPrint connectome analysis service",
long_description=long_description,
long_description_content_type='text/markdown',
author="Stuart Berg",
author_email='bergs@hhmi.janelia.org',
url='https://github.com/connectome-neuprint/neuprint-python',
packages=find_packages(),
entry_points={},
install_requires=requirements,
keywords='neuprint-python',
python_requires='>=3.9',
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
)