forked from pymoca/pymoca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (73 loc) · 2.43 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
74
75
76
77
78
79
[build-system]
requires = ["setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "pymoca"
dynamic = ["version"]
license = {file = "LICENSE"}
description = "A python/modelica based simulation environment."
keywords = ["modelica", "simulation", "compiler"]
readme = "README.md"
authors = [
{ name = "Pymoca Contributors" },
]
maintainers = [
{ name = "Jack Vreeken", email = "jack@vreeken.me" },
{ name = "Kent Rutan", email = "gs1150e@icloud.com" },
]
requires-python = ">=3.8"
dependencies = [
"numpy >= 1.8.2",
"antlr4-python3-runtime == 4.13.*",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Other",
"Topic :: Software Development",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Embedded Systems",
]
[project.urls]
homepage = "https://github.com/pymoca/pymoca"
[project.optional-dependencies]
# Note that we need setuptools for the distutils.ccompiler dependency
# in the CasADi backend.
casadi = ["casadi>=3.4.0", "setuptools>=60.0.0"]
lxml = ["lxml>=3.5.0", "scipy>=0.13.3"]
sympy = ["sympy>=0.7.6.1", "scipy>=0.13.3", "jinja2>=2.10.1"]
examples = ["jupyterlab", "matplotlib"]
all = ["pymoca[casadi,lxml,sympy,examples]"]
# See the docstring in versioneer.py for instructions. Note that after changing
# this section, run `versioneer install --no-vendor`, commit the results.
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/pymoca/_version.py"
versionfile_build = "pymoca/_version.py"
tag_prefix = ""
parentdir_prefix = "pymoca-"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
force-exclude = '''
(
src/pymoca/generated
| src/pymoca/_version.py
| test/generated
| test/libraries
)
'''