-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (47 loc) · 1.56 KB
/
setup.py
File metadata and controls
55 lines (47 loc) · 1.56 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
54
55
from setuptools import setup, find_packages
setup(
name='sinn',
version='0.2.0rc3',
description="A package for Simulation and Inference of Neuron Networks",
author="Alexandre René",
author_email="arene010@uottawa.ca",
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Information Analysis'
],
packages=find_packages(),
install_requires=['numpy >= 1.13',
'scipy',
'pydantic >= 1.7.1',
'parameters',
'mackelab-toolbox[iotools,utils,typing,parameters,theano] >= 0.2.0a1',
'tabulate',
'theano_shim >= 0.2.3',
'theano-pymc',
'tqdm',
'packaging',
'odictliteral'],
# Add theano as optional dependency
extras_require = {
'dev': [
'ipykernel',
'pandas',
'pint',
'pytest',
'pytest-xdist',
'quantities',
'matplotlib',
'scipy',
'seaborn',
'sphinx',
'sphinxcontrib.mermaid',
'xarray'
]
}
)