-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.15 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
[tool.poetry]
name = "omtool"
version = "0.4.0"
description = "Package and program that models N-Body problem in galactic evolution application."
authors = ["Artyom Zaporozhets <kraysent@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Kraysent/OMTool"
documentation = "https://omtool.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.10"
amuse-framework = "^2022.6.0"
astropy = "^5.1"
numpy = "^1.23.1"
matplotlib = "^3.5.2"
marshmallow = "^3.17.0"
marshmallow-jsonschema = "^0.13.0"
PyYAML = "^6.0"
pandas = "^1.4.3"
pyzerolog = "^0.3.0"
# pyfalcon = { git = "https://github.com/GalacticDynamics-Oxford/pyfalcon.git" }
py-expression-eval = { version = "^0.3.14", optional = true }
[tool.poetry.dev-dependencies]
black = "^22.6.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
mypy = "^0.961"
types-PyYAML = "^6.0.10"
[tool.poetry.extras]
tasks = ["py-expression-eval"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
no_namespace_packages = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"