-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (48 loc) · 1.75 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
import os
import pkg_resources
import fixinventoryappbundler
from setuptools import setup, find_packages
def read(file_name: str) -> str:
with open(os.path.join(os.path.dirname(__file__), file_name)) as of:
return of.read()
setup(
name=fixinventoryappbundler.__title__,
version=fixinventoryappbundler.__version__,
description=fixinventoryappbundler.__description__,
license=fixinventoryappbundler.__license__,
packages=find_packages(),
long_description=read("README.md"),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"fixinventoryappbundler = fixinventoryappbundler.__main__:bundle",
"fixinventoryapprunner = fixinventoryappbundler.__main__:run",
]
},
include_package_data=True,
zip_safe=False,
install_requires=[str(requirement) for requirement in pkg_resources.parse_requirements(read("requirements.txt"))],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
# Current project status
"Development Status :: 4 - Beta",
# Audience
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
# License information
"License :: OSI Approved :: Apache Software License",
# Supported python versions
"Programming Language :: Python :: 3.9",
# Supported OS's
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
# Extra metadata
"Environment :: Console",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
],
keywords="cloud security",
url="https://github.com/someengineering/fixinventoryappbundler",
)