-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.41 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
import codecs
from setuptools import setup, find_packages
with codecs.open("README.md", encoding="utf-8") as f:
readme = f.read()
# Read dependencies from requirements.txt
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="cloudimized",
version="1.3.11",
description='Google Cloud Platform (GCP) configuration scanning tool',
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/egnyte/cloudimized",
author="Egnyte and Contributors",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
packages=find_packages(),
package_data={
"": ["LICENSE", "*.md", "config-example.yml"],
"cloudimized": ["singlerunconfigs/*.yaml"]
},
include_package_data=True,
install_requires=requirements,
extras_require={
"test": [
'mock',
],
},
entry_points={
"console_scripts": [
"cloudimized=cloudimized.core.run:run",
],
},
)