-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (44 loc) · 1.68 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
from setuptools import setup, find_packages
from pathlib import Path
from runpy import run_path
from extreqs import parse_requirement_files
HERE = Path(__file__).resolve().parent
verstr = run_path(str(HERE / "nblast_gpu" / "__version__.py"))["__version__"]
install_requires, extras_require = parse_requirement_files(
HERE / "requirements.txt",
)
with open("README.md") as f:
long_description = f.read()
setup(
name='nblast-gpu',
version=verstr,
packages=find_packages(include=["nblast_gpu", "nblast_gpu.*"]),
license='GNU GPL V3',
description='NBLAST on GPU (PyTorch)',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/navis-org/navis-nblast-gpu',
project_urls={
"Documentation": "https://github.com/navis-org/navis-nblast-gpu",
"Source": "https://github.com/navis-org/navis-nblast-gpu",
"Changelog": "https://github.com/navis-org/navis-nblast-gpu",
},
author='Philipp Schlegel',
author_email='[email protected]',
keywords='NBLAST GPU PyTorch neuron comparison',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=install_requires,
extras_require=dict(extras_require),
python_requires='>=3.7',
zip_safe=False,
include_package_data=True
)