-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.51 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
[tool.poetry]
name = "queenbee"
version = "0.1.0"
description = "Queenbee is a workflow language and a package manager for creating DAG workflows which empowers all workflow libraries in Ladybug Tools!"
authors = ["Ladybug Tools <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pollination/queenbee"
repository = "https://github.com/pollination/queenbee"
documentation = "https://pollination.github.io/queenbee/"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{ include = "queenbee" }
]
[tool.poetry.scripts]
queenbee = 'queenbee.cli:main'
[tool.poetry.dependencies]
python = "^3.7"
pydantic = "<2.0"
pyyaml = ">=6.0"
jsonschema = ">=4.17.3"
click = "^8.1.7"
click-plugins = "^1.1.1"
[tool.poetry.extras]
cli = ["click", "click_plugins"]
[tool.poetry.group.dev.dependencies]
pydantic-openapi-helper = "^0.2.11"
coverage = ">=6"
coveralls = ">=3"
pytest = ">=6.2.4"
pytest-cov = ">=2.12.1"
setuptools = ">=65.5.1"
[tool.poetry.group.docs.dependencies]
sphinx = ">=5.3.0"
sphinx-bootstrap-theme = "^0.8.1"
sphinxcontrib-fulltoc = "^1.2.0"
sphinxcontrib-websupport = ">=1.2.4"
sphinx-click = ">=4.4.0"
recommonmark = "^0.7.1"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"