-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
64 lines (57 loc) · 2.25 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
[tool.poetry]
name = "pypads"
version = "0.5.7"
description = "PyPaDS aims to to add tracking functionality to machine learning libraries."
authors = ["Thomas Weißgerber <[email protected]>", "Ben Amor Mehdi <[email protected]>", "Christofer Fellicious <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://www.padre-lab.eu/"
repository = "https://github.com/padre-lab-eu/pypads"
documentation = "https://pypads.readthedocs.io/en/latest/"
keywords = ["tracking", "reproducibility", "provenance", "function injection", "mapping files"]
classifiers = ["Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Artificial Intelligence"]
[tool.poetry.dependencies]
python = "^3.6.0"
cloudpickle = "^1.3.0"
mlflow = "^1.12.1"
boltons = "^19.3.0"
loguru = "^0.4.1"
pydantic = "^1.5.1"
jsonpath-rw = "^1.4.0"
jsonpath-rw-ext = "^1.2.2"
pymongo = "3.11.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2.5"
pytest-faulthandler = "^2.0.1"
scikit-learn = "^0.21.3"
keras = "^2.3.1"
tensorflow = "^2.3.0"
psutil = "^5.7.0"
networkx = "^2.4"
sphinx = "^2.0.1"
sphinx_rtd_theme = "^0.4.3"
sphinx-pydantic = "^0.1.1"
taskipy = "^1.1.2"
bump2version = "^1.0.0"
coverage = {version = "^5.0", extras = ["toml"]}
gitchangelog = "^3.0.4"
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme"]
[tool.taskipy.tasks]
#pre_publish = "poetry test"
publish = "bump2version"
post_publish = "gitchangelog && git add ./CHANGELOG.rst && git commit -m 'auto: Updated changelog' && git push --tags && task doc"
doc = "make -C ./docs html"
post_doc = "task deploy"
deploy = "poetry build && poetry publish"
[tool.coverage.run]
branch = true
include = ["pypads/*"]
omit = [
"*/__init__.py",
]
[tool.coverage.report]
exclude_lines = []
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"