forked from mackelab/sourcerer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 909 Bytes
/
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
NAME = "sourcerer"
DESCRIPTION = "Sample-based Maximum Entropy Source Distribution Estimation"
URL = "NONE"
AUTHOR = "Julius Vetter, Guy Moss"
REQUIRES_PYTHON = ">=3.8.0"
REQUIRED = [
"numpy",
"torch",
"matplotlib",
"scikit-learn",
"hydra-core",
"pandas",
"corner",
"scipy",
"brian2",
"seaborn",
"torchdiffeq",
]
EXTRAS = {
"dev": [
"autoflake",
"black",
"deepdiff",
"flake8",
"isort",
"ipykernel",
"jupyter",
"pep517",
"pytest",
"pyyaml",
],
}
setup(
name=NAME,
version="0.1.0",
description=DESCRIPTION,
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(),
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license="AGPLv3",
)