-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
56 lines (50 loc) · 1.73 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 = "awsipranges"
version = "0.3.1"
description = "Work with the AWS IP address ranges in native Python."
license = "Apache-2.0"
authors = ["Chris Lunsford <[email protected]>"]
readme = "README.md"
homepage = "https://aws-samples.github.io/awsipranges/"
repository = "https://github.com/aws-samples/awsipranges"
documentation = "https://aws-samples.github.io/awsipranges/"
keywords = ["AWS", "IP", "ranges", "addresses"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
flake8 = "^3.9.2"
ipython = "^7.25.0"
pytest = "^6.2.4"
pyOpenSSL = "^20.0.1"
mkdocs = "^1.2.2"
pymdown-extensions = "^8.2"
mkautodoc = "^0.1.0"
coverage = "^5.5"
pytest-cov = "^2.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[pytest]
log_cli = true
log_cli_level = 20
[tool.pytest.ini_options]
markers = [
"data: marks JSON data syntax and semantics tests (deselect with '-m \"not data\"')",
"extra_data_loading: marks extra tests that load the JSON data from the web (deselect with '-m \"not extra_data_loading\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"test_utils: marks tests as slow (deselect with '-m \"not test_utils\"')",
]