-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "xfds"
version = "0.3.0"
description = "Utility for managing FDS models"
license = "MIT"
authors = ["Brian Cohan <briancohan@pbd.tools>"]
readme = "README.md"
homepage = "https://xfds.pbd.tools"
repository = "https://github.com/pbdtools/xfds"
documentation = "https://xfds.pbd.tools"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = "^3.8"
Markdown = "^3.3.6"
typer = "^0.4.0"
Jinja2 = "^3.1.1"
PyYAML = "^6.0"
toml = "^0.10.2"
Pint = "^0.19.2"
numpy = "^1.23.1"
pandas = "^1.4.3"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
codecov = "^2.1.12"
coverage = "^6.3.1"
flake8-annotations = "^2.7.0"
flake8-bugbear = "^22.1.11"
freezegun = "^1.2.1"
mypy = "^0.931"
pre-commit = "^2.16.0"
pytest = "7.0"
pytest-cov = "^3.0.0"
safety = "^1.10.3"
setuptools = "^62.1.0"
mkdocs = "^1.3.0"
mkdocs-material = "^8.3.6"
mdx-include = "^1.4.1"
pytest-datadir = "^1.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
xfds = "xfds.cli:app"
[tool.coverage.run]
source = ["src/xfds"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
markers = [
"integration_test: marks test as integration tests",
]