forked from connectome-neuprint/neuprint-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.01 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
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='[email protected]',
url='https://github.com/connectome-neuprint/neuprint-python',
packages=find_packages(),
entry_points={},
install_requires=requirements,
keywords='neuprint-python',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)