-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (52 loc) · 2.18 KB
/
setup.py
File metadata and controls
53 lines (52 loc) · 2.18 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
50
51
52
53
# ~/cerebtests/setup.py
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name="cerebtests",
version="0.0.2",
author="Lungsi",
author_email="lungsi.ngwua@cnrs.fr",
#packages=find_packages(),
packages=["cerebtests",
#"cerebtests.file_manager",
#"cerebtests.test_manager",
# capabilities
"cerebtests.capabilities",
"cerebtests.capabilities.cells",
# validation_tests
"cerebtests.validation_tests",
"cerebtests.validation_tests.cells",
#"cerebtests.validation_tests.cells.general",
"cerebtests.validation_tests.cells.Purkinje",
"cerebtests.validation_tests.cells.Granule",
#"cerebtests.validation_tests.cells.GolgiCell"
],
url="https://github.com/cerebunit/cerebtests",
download_url = "https://github.com/cerebunit/cerebtests/archive/refs/tags/v0.0.2.tar.gz",
keywords = ["VALIDATION", "CEREBELLUM", "NEUROSCIENCE",
"MODELING", "SCIENTIFIC METHOD"],
license="BSD Clause-3",
description="Installable package 'cerebtests' for cerebunit",
long_description="Package for running validation test on cerebellum models. Four components of CerebUnit: CerebModels, CerebData, CerebStats (install) and CerebTests (install).",
install_requires=[
"sciunit",
"quantities",
"scipy",
"numpy",
"cerebstats",
],
classifiers = [
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as current state of package
"Development Status :: 4 - Beta",
# Define audience
"Intended Audience :: Developers",
# License
"License :: OSI Approved :: BSD License",
# Specify supported python versions
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)