-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (28 loc) · 996 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (28 loc) · 996 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="cerebunit",
version="0.1.dev",
author="Lungsi",
author_email="lungsi.sharma@unic.cnrs-gif.fr",
packages=["cerebunit",
#"cerebunit.file_manager",
#"cerebunit.test_manager",
# capabilities
"cerebunit.capabilities",
"cerebunit.capabilities.cells",
# validation_tests
"cerebunit.validation_tests",
"cerebunit.validation_tests.cells",
"cerebunit.validation_tests.cells.PurkinjeCell",
#"cerebunit.validation_tests.cells.GranularCell",
#"cerebunit.validation_tests.cells.GolgiCell"
],
#url="",
license="BSD Clause-3",
#description="",
long_description="",
#install_requires=["sciunit>=0.1.3.1"]
)