-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (51 loc) · 1.57 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fd:
long_description = fd.read()
setup(
name='corelay',
use_scm_version=True,
author='chrstphr',
author_email='[email protected]',
description='Quickly compose single-machine analysis pipelines.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/virelay/corelay',
packages=find_packages(where='src', include=['corelay*']),
package_dir={'': 'src'},
install_requires=[
'h5py>=2.9.0',
'matplotlib>=3.0.3',
'numpy>=1.16.3',
'scikit-learn>=0.20.3',
'scipy>=1.2.1',
'Click>=7.0',
'scikit-image>=0.18.0',
'metrohash-python>=1.1.3.post2',
],
setup_requires=[
'setuptools_scm',
],
extras_require={
'umap': ['umap-learn>=0.3.9'],
'hdbscan': ['hdbscan>=0.8.22'],
'docs': [
'sphinx-copybutton>=0.4.0',
'sphinx-rtd-theme>=1.0.0',
'sphinxcontrib.datatemplates>=0.9.0',
'sphinxcontrib.bibtex>=2.4.1',
],
'tests': [
'pytest',
'pytest-cov',
],
},
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)