-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
59 lines (53 loc) · 1.88 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
56
57
58
59
from setuptools import setup, find_packages
import os
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
def find_version():
path_to_version = os.path.join(ROOT_DIR, "siibra", "VERSION")
with open(path_to_version, "r", encoding="utf-8") as f:
return f.read()
with open(os.path.join(ROOT_DIR, "README.rst"), "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="siibra",
version=find_version(),
author="Big Data Analytics Group, Forschungszentrum Juelich, Institute of Neuroscience and Medicine (INM-1)",
author_email="[email protected]",
description="siibra - Software interfaces for interacting with brain atlases",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/FZJ-INM1-BDA/siibra-python",
packages=find_packages(include=["siibra", "siibra.*"]),
include_package_data=True,
package_data={
'siibra': [
'VERSION',
'vocabularies/gene_names.json',
'vocabularies/receptor_symbols.json',
'vocabularies/region_aliases.json'
]
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
python_requires=">=3.7",
install_requires=[
"anytree",
"nibabel",
"appdirs",
"scikit-image",
"requests",
"neuroglancer-scripts",
"nilearn",
'typing-extensions; python_version < "3.8"',
"filelock",
"ebrains-drive >= 0.6.0",
],
)