-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (24 loc) · 836 Bytes
/
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
import os
import sys
from setuptools import setup
from pip.req import parse_requirements
from pip.download import PipSession
VERSION = "0.1.26"
scripts = ["bin/kforce"]
install_requires = [str(ir.req) for ir in parse_requirements("requirements/base.txt", session=PipSession())]
if __name__ == "__main__":
setup(
name="kforce",
version=VERSION,
author="Yang Kelvin Liu",
author_email="[email protected]",
license="Apache License 2.0",
url="https://github.com/ycliuhw/kforce",
description="KOPS template automation",
packages=["kforce"],
scripts=scripts,
keywords=["k8s", "kops", "kubernetes", "template"],
install_requires=install_requires,
# include_package_data=True,
package_data={"kforce": ["raw_templates/**/*"]},
)