-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.2 KB
/
setup.py
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
import setuptools
import toml
with open("README.md") as fp:
long_description = fp.read()
with open("pyproject.toml") as f:
pyproject = toml.load(f)
project = pyproject["tool"]["poetry"]
setuptools.setup(
name=project.get("name"),
version=project.get("version"),
description=project.get("description"),
long_description=long_description,
long_description_content_type="text/markdown",
author="Joris Conijn",
author_email="joris@conijnonline.nl",
url="https://github.com/Nr18/cfn-guard-test",
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
install_requires=[
"click==8.1.8",
"junit-xml==1.9",
],
entry_points={
"console_scripts": [
"cfn-guard-test = cfn_guard_test:main",
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
],
)