-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.12 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
[tool.poetry]
name = "ip-liberator"
version = "0.2.5.dev0"
description = "A command line utility to update AWS Security Groups rules."
authors = ["Wagner Macedo <[email protected]>"]
license = "GPL-3.0"
readme = "README.rst"
repository = "https://github.com/wagnerluis1982/ip-liberator"
documentation = "https://ip-liberator.readthedocs.io"
keywords= ["ip-liberator", "Python", "Amazon AWS", "cloud computing", "DevOps"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
]
include = [
"AUTHORS.rst",
"CONTRIBUTING.rst",
"HISTORY.rst",
"docs/*",
"**/Makefile",
"**/conf.py",
]
[tool.poetry.scripts]
ip-liberator = 'ip_liberator.__main__:main'
[tool.poetry.dependencies]
python = "^3.6"
boto3 = "^1.9.133"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pytest-cov = "^4.0.0"
Sphinx = "^5.2.2"
watchdog = "^2.1.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"