forked from mackelab/sbi-for-connectomics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.06 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
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import find_packages, setup
# Package meta-data.
NAME = "consbi"
DESCRIPTION = "simulation-based inference for computational connectomics"
URL = "https://github.com/mackelab/synaptic-rule-inference"
AUTHOR = "Jan Bölts, Philipp Harth"
REQUIRES_PYTHON = ">=3.6.0"
REQUIRED = [
"matplotlib",
"numpy",
"scipy",
"torch>=1.5.1",
"pyro-ppl>=1.3.1",
"tqdm",
"scikit-learn",
"pandas",
"sbibm @ git+https://github.com/mackelab/sbibm@connectomics-task#egg=sbibm",
"svgutils==0.3.1",
"invoke",
]
EXTRAS = {
"dev": [
"autoflake",
"black",
"deepdiff",
"flake8",
"isort",
"jupyter",
"pep517",
"pytest",
"pyyaml",
],
}
setup(
name=NAME,
version="0.1.0",
description=DESCRIPTION,
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license="AGPLv3",
)