-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 937 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "escape-abm"
version = "0.0.3"
authors = [
{ name="Parantapa Bhattacharya", email="[email protected]" },
]
description = "Epidemic Simulator Compiler and Programming Environment"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"click",
"platformdirs",
"rich",
"tree-sitter",
"tree-sitter-esl",
"jinja2",
"pygls",
"platformdirs",
"numpy",
"scipy",
"pandas",
"pyarrow",
"polars",
"h5py",
"typeguard",
"pydantic"
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "http://github.com/nssac/escape-abm"
[project.scripts]
esc = "escape_abm.cli:cli"