-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (41 loc) · 1.58 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·49 lines (41 loc) · 1.58 KB
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
# -*- coding: utf-8 -*-
import setuptools
INSTALL_REQUIREMENTS = ['numpy==1.19.1',
'nibabel==3.2.1',
'networkx==2.5',
'scipy==1.5.2',
'matplotlib==3.4.2',
'six==1.16.0',
'column_filter',
]
DEPENDENCY_LINKS = ['git+https://github.com/haenelt/column_filter.git#egg=column_filter',
]
CLASSIFIERS = ["Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
with open("VERSION", "r", encoding="utf8") as fh:
VERSION = fh.read().strip()
with open("README.md", "r", encoding="utf8") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name="column_sampler",
version=VERSION,
author="Daniel Haenelt",
author_email="daniel.haenelt@gmail.com",
description="Analyze cortical columns on a surface mesh",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/haenelt/column_sampler",
license='GPL v3',
packages=setuptools.find_packages(),
install_requires=INSTALL_REQUIREMENTS,
dependency_links=DEPENDENCY_LINKS,
classifiers=CLASSIFIERS,
python_requires='>=3.8',
include_package_data=True,
zip_safe=False,
)