-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.08 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
[tool]
[tool.poetry]
authors = ["Tristan Van Thielen <tristan.van.thielen@devoteam.com>"]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'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',
]
description = "Top-level package for Flycs SDK."
homepage = "https://github.com/Fourcast/flycs_sdk"
license = "MIT"
name = "flycs_sdk"
packages = [
{include = "flycs_sdk"},
{include = "tests", format = "sdist"},
]
readme = "README.rst"
version = "0.12.0"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
requirements-parser = "^0.5.0"
"ruamel.yaml" = "^0.17.0"
semver = "^2.13.0"
[tool.poetry.dev-dependencies]
black = "22.3.0"
bump2version = "*"
coverage = "*"
deepdiff = "^5.0.2"
flake8 = "*"
invoke = "*"
isort = "*"
pylint = "*"
pytest = "*"
sphinx = "*"
tox = "*"
yapf = "*"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]