forked from zbrookle/avionix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (48 loc) · 1.8 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
54
55
from distutils.core import setup
import os
from pathlib import Path
from setuptools import find_packages
import versioneer
CODE_DIRECTORY = Path(__file__).parent
def read_file(filename):
"""Source the contents of a file"""
with open(
os.path.join(os.path.dirname(__file__), filename), encoding="utf-8"
) as file:
return file.read()
setup(
name="avionix",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
long_description="Coming soon...",
maintainer="Zach Brookler",
maintainer_email="zachb1996@yahoo.com",
description="A package for soldifying kubernetes structure and development by "
"using objects and code rather than yaml",
python_requires=">=3.6.1",
install_requires=["pyyaml >=5.4"],
project_urls={
"Source Code": "https://github.com/zbrookle/avionix",
"Documentation": "https://github.com/zbrookle/avionix",
"Bug Tracker": "https://github.com/zbrookle/avionix/issues",
},
url="https://avionix.readthedocs.io/en/latest/index.html",
download_url="https://github.com/zbrookle/avionix/archive/master.zip",
keywords=["kubernetes", "helm", "yaml", "docker", "infrastructure", "devops"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Typing :: Typed",
"Operating System :: OS Independent",
],
long_description_content_type="text/markdown",
include_package_data=True,
package_data={"avionix": ["py.typed"]},
zip_safe=False,
)