-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.cfg
46 lines (42 loc) · 1.29 KB
/
setup.cfg
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
[metadata]
name = awacs
version = attr: awacs.__version__
url = https://github.com/cloudtools/awacs
author = Mark Peek
author_email = [email protected]
description = AWS Access Policy Language creation library
long_description = file: README.rst
long_description_content_type = text/x-rst
license = New BSD license
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
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
project_urls =
Changelog = https://github.com/cloudtools/awacs/blob/master/CHANGELOG.md
Source = https://github.com/cloudtools/awacs
Tracker = https://github.com/cloudtools/awacs/issues
[options]
include_package_data = true
install_requires =
typing-extensions >= 3.7.4.3; python_version < "3.8"
packages = find:
python_requires = >=3.7.0
zip_safe = false
[options.packages.find]
exclude =
tests
[pycodestyle]
max-line-length = 88
ignore = E203,W503
[isort]
profile = black