-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "atomica"
dynamic = ["version"]
description = "Toolbox for compartment-based dynamic systems with costing and optimization"
readme = "README.md"
authors = [
{ name="Atomica Team", email="info@atomica.tools" },
]
license = { text="MIT" }
keywords = ["dynamic", "compartment", "optimization", "disease"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
requires-python = ">=3.7"
dependencies = [
"matplotlib",
"numpy>=1.10.1",
"scipy>=1.6",
"pandas",
"xlsxwriter",
"openpyxl",
"pyswarm",
"hyperopt",
"sciris",
"tqdm",
]
[project.urls]
Homepage = "https://atomica.tools"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "atomica.version.version"}