-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (45 loc) · 1.86 KB
/
setup.py
File metadata and controls
46 lines (45 loc) · 1.86 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
# ~/cerebstats/setup.py
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name="cerebstats",
version="0.0.3",
author="Lungsi",
author_email="lungsi.ngwua@cnrs.fr",
#packages=find_packages(),
packages=["cerebstats",
"cerebstats.data_conditions",
"cerebstats.stat_scores",
"cerebstats.hypothesis_testings",
"cerebstats.test_quality",
"cerebstats.test_mock_data"
],
url="https://github.com/cerebunit/cerebstats",
download_url = "https://github.com/cerebunit/cerebstats/archive/refs/tags/v0.0.3.tar.gz",
keywords = ["VALIDATION", "CEREBELLUM", "NEUROSCIENCE",
"MODELING", "SCIENTIFIC METHOD"],
license="BSD Clause-3 Revised",
description="Installable package 'cerebstats' for cerebunit",
long_description="Statistical package necessary for running validation test on cerebellum models. Four components of CerebUnit: CerebModels, CerebData, CerebStats (install), and CerebTests (install).",
install_requires=[
"sciunit",
"quantities",
"scipy",
"numpy",
],
classifiers = [
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as current state of package
"Development Status :: 3 - Alpha",
# 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",
"Programming Language :: Python :: 3.8",
],
)