-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
73 lines (65 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools", "wheel", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "ltbams"
dynamic = ["version"]
description = "Python software for scheduling modeling and co-simulation with dynamics."
readme = "README.md"
authors = [
{name = "Jinning Wang", email = "[email protected]"}
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console"
]
dependencies = [
"kvxopt>=1.3.2.1",
"numpy",
"scipy",
"sympy>=1.6,!=1.10.0",
"pandas",
"matplotlib",
"psutil",
"openpyxl",
"andes>=1.8.7",
"pybind11",
"cvxpy"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"coverage",
"flake8",
"numpydoc",
"toml",
"pyscipopt",
"toml"
]
doc = [
"pandoc",
"ipython",
"sphinx",
"pydata-sphinx-theme",
"numpydoc",
"sphinx-copybutton",
"sphinx-panels",
"myst-parser",
"nbsphinx",
"pyscipopt"
]
[project.scripts]
ams = "ams.cli:main"
[tool.versioneer]
VCS = "git"
style = "pep440-post"
versionfile_source = "ams/_version.py"
versionfile_build = "ams/_version.py"
tag_prefix = "v"
[tool.setuptools.packages.find]
where = ["."]