-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "asdm"
version = "0.7.0"
description = "A Python package for System Dynamics Modeling"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
authors = [
{name = "Wang Zhao", email = "wzh1895@outlook.com"},
{name = "Matt Stammers"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"pandas",
"matplotlib",
"networkx",
"lxml",
"beautifulsoup4",
"scipy",
"Flask",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"asdm.simulator" = [
"templates/*.html",
"static/js/*.js",
"static/css/*.css"
]
[project.scripts]
asdm = "asdm.cli:main"
"asdm.simulator" = "asdm.cli:main_legacy"
[project.urls]
Homepage = "https://github.com/wzh1895/ASDM"
"Source Code" = "https://github.com/wzh1895/ASDM"
"Matt Stammers's GitHub" = "https://github.com/MattStammers"
[tool.pytest.ini_options]
# Show all test results: passed, failed, skipped, etc.
addopts = "-rA -v"
testpaths = ["tests", "resources"]