-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
84 lines (69 loc) · 2.13 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
80
81
82
83
84
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "hydra-slayer"
version = "0.5.0"
description = "A framework for elegantly configuring complex applications"
license = "Apache License 2.0"
authors = [
"Sergey Kolesnikov <scitator@gmail.com>",
"Yauheni Kachan <yauheni.kachan@gmail.com>"
]
readme = "README.md"
repository = "https://github.com/catalyst-team/hydra-slayer"
homepage = "https://catalyst-team.github.io/hydra-slayer/"
documentation = "https://catalyst-team.github.io/hydra-slayer/"
keywords = [
"distributed computing"
]
classifiers = [
"Environment :: Console",
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
# Audience
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
# Topics
"Topic :: Scientific/Engineering :: Information Analysis",
# Programming
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython"
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
poetry = "^1.4.0"
setuptools = "*"
[tool.poetry.group.codestyle]
optional = true
[tool.poetry.group.codestyle.dependencies]
black = "~20.8b0"
# Fix version of click because of: https://github.com/psf/black/issues/2964
click = "~8.0.2"
catalyst-codestyle = "21.09.2"
doc8 = "^0.8"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^4.1.1"
sphinx-multiversion = "^0.2.4"
sphinx-rtd-theme = "^0.5.2"
tomlkit = "^0.11.0"
[tool.nitpick]
style = "https://raw.githubusercontent.com/catalyst-team/codestyle/v21.09.2/styles/nitpick-style-catalyst.toml"
[tool.black]
line-length = 99