-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
49 lines (45 loc) · 1.06 KB
/
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
47
48
49
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "oasisabm"
authors = [
{name = "Janody Pougala",email = "[email protected]"},
]
description = "This is a stable version of the OASIS activity-based framework. This repository includes the simulation code, based on the Python API of the CPLEX solver."
readme = "README.md"
keywords = ["python", "disdrometer"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.8"
dependencies = [
"click",
"cplex",
"docplex",
"joblib",
"json5",
"jsonschema",
"matplotlib",
"numpy",
"ortools",
"pandas",
"python-dateutil",
"python-json-logger",
"scipy",
"seaborn",
"geopy"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
]
[tool.setuptools_scm]
write_to = "oasisabm/_version.py"
[tool.setuptools]
packages = ["oasisabm"]