-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (40 loc) · 1.28 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
44
45
46
47
48
49
# -*- coding: utf-8 -*-
import setuptools
with open("requirements.txt") as fp:
requirements = fp.read().splitlines()
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="alibabacloud-ros-iact3",
version="0.1.9",
description="Iact3 is a tool that tests Terraform and ROS(Resource Orchestration Service) templates.",
long_description=long_description,
long_description_content_type="text/markdown",
author="AlibabaCloud",
packages=[
"iact3",
"iact3.cli_modules",
"iact3.plugin",
"iact3.report",
"iact3.testing"
],
install_requires=requirements,
python_requires=">=3.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X ",
],
entry_points={
"console_scripts": [
"iact3 = iact3.__main__:sync_run",
]
},
include_package_data=True
)