forked from wzh1895/ASDM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.26 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
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "asdm"
description = "Agile System Dynamics Engine"
readme = "README.md"
requires-python = ">=3.9.0"
license = { file = "LICENSE" }
authors = [
{ name = "Wang Zhao", email = "wang.zhao@strath.ac.uk" },
{ name = "Matt Stammers", email = "matt@reallyusefulmodels.com" }
]
dependencies = [
"matplotlib>=3.5.1",
"networkx>=2.6.3",
"numpy>=1.21.5",
"pandas>=1.3.5",
"pymc3>=3.11.4",
"scipy>=1.7.1",
"theano-pymc>=1.1.2",
"lxml>=4.9.1",
"beautifulsoup4>=4.11.1",
"tqdm>=4.64.0",
"ipywidgets>=7.6.5",
"openpyxl>=3.0.10",
"ipykernel>=6.22.0",
"streamlit>=1.20.0"
]
dynamic = ["version"]
[tool.setuptools]
packages = ["ASDM"]
[tool.setuptools.dynamic]
version = {attr = "ASDM.__version__"}
[project.urls]
Homepage = "https://github.com/wzh1895/ASDM.git"
[project.optional-dependencies]
eda = [
"black",
"bokeh",
"holoviews",
"isort",
"jupyterlab_code_formatter",
"jupyterlab",
"seaborn",
]
dev = [
"mkdocs-material",
"mkdocs",
"mkdocstrings-python",
"mkdocstrings",
"nbstripout",
"pre-commit",
"requests-cache",
"pyyaml"
]
[tool.isort]
profile = "black"