-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.48 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
from setuptools import setup, find_packages
with open("README.md") as file:
long_description = file.read()
with open("neuro3d/__init__.py") as f:
for line in f.readlines():
if "__version__" in line:
exec(line.strip())
break
else:
raise IOError("Version not specified in __init__")
setup(
name="neuro3d",
version=__version__,
description="Blender toolkit for visualizing neurons and simulation data",
long_description=long_description,
long_description_content_type="text/markdown",
author="Robin De Schepper",
author_email="[email protected]",
url="https://github.com/Helveg/neuro3d",
packages=find_packages(),
keywords=[
"Blender",
"neuron",
"neuroscience",
"visualization",
"neural networks",
"neurons",
"3D",
],
license="GPLv3",
install_requires=[
"numpy",
"errr"
],
entry_points={
"neuro3d.backends": ["blender = neuro3d._blender.backend:BlenderBackend"]
},
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Visualization",
],
)