This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
53 lines (45 loc) · 1.45 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
50
51
52
53
from setuptools import setup, find_packages
from anchorecli import version
version = version.version
with open("requirements.txt") as f:
requirements = f.read().splitlines()
package_name = "anchorecli"
description = "Anchore Service CLI"
long_description = open("README.rst").read()
url = "http://www.anchore.com"
package_data = {package_name: ["cli/*", "clients/*", "conf/*"]}
data_files = []
scripts = []
setup(
name="anchorecli",
author="Anchore Inc.",
author_email="dev@anchore.com",
license="Apache License 2.0",
description=description,
long_description=long_description,
url=url,
packages=find_packages(),
version=version,
data_files=data_files,
include_package_data=True,
package_data=package_data,
entry_points="""
[console_scripts]
anchore-cli=anchorecli.cli:main_entry
""",
install_requires=requirements,
scripts=scripts,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)