-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
31 lines (30 loc) · 1.06 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
from setuptools import find_packages, setup
setup(
name="sustainability-scanner",
version="1.3.0",
author="AWS",
description="Sustainability Scanner",
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
packages=find_packages(include=["susscanner", "susscanner.*"]),
package_data={
"": ["rules_metadata.json", "rules/*", "rules/test_cases/*", "static/*"]
},
include_package_data=True,
install_requires=["typer==0.12.4"],
url="http://github.com/awslabs/sustainability-scanner",
python_requires=">=3.6",
license="MIT-0",
entry_points={
"console_scripts": ["susscanner=susscanner.__main__:main"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)