-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.07 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
[tool.poetry]
name = "pystematic"
version = "1.6.0"
description = "A framework that helps you setup and run reproducible experiments in python."
repository = "https://github.com/evalldor/pystematic"
documentation = "https://pystematic.readthedocs.io"
license = "MIT"
readme = "README.rst"
authors = ["E.Valldor"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = "^3.6.2"
PyYAML = "^5.4.1"
wrapt = "^1.12.1"
rich = "^10.12.0"
importlib-metadata = "^4.6.4"
typing-extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
sphinx-rtd-theme = "^0.5.2"
Sphinx = "^4.1.2"
sphinxcontrib-napoleon = "^0.7"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
[tool.poetry.plugins."pystematic.plugins"]
"pystematic-standard" = "pystematic.standard_plugin:StandardPlugin"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"