-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (30 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name='sinnfull',
version='0.1.0dev',
description="",
python_requires=">=3.8",
author="Alexandre René",
author_email="",
license='MPL',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only'
],
packages=find_packages(),
install_requires=[ # see also env.yaml
# We want to specify at least all pip-installed packages here, to ensure that
# the resolver installs them in the right order when building from env-docs.yaml
'jupyter-book',
'parameters',
'pymc3',
'pydantic>=1.8.1',
'sumatra[git]>=0.8dev',
'theano_shim>=0.3.0',
'mackelab_toolbox[iotools,typing,utils,parameters]>=0.2.0a1',
'smttask>=0.2.0b1',
'sinn>=0.2.0rc1',
]
)