-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup-codegen.py
51 lines (44 loc) · 2.07 KB
/
setup-codegen.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
from setuptools import setup
__version__ = "1.1.0"
def get_long_desc():
return open('README-codegen.rst', 'r').read()
def get_requirements():
lines = open('requirements-codegen.txt', 'r').readlines()
reqs = [line.strip() for line in lines if line.strip()]
return reqs
setup(
name="hikaru-codegen",
version=__version__,
packages=[],
description="Hikaru allows you to smoothly move between Kubernetes YAML, "
"Python objects, and Python source, in any direction",
long_description=get_long_desc(),
long_description_content_type="text/x-rst",
author="Tom Carroll",
author_email="[email protected]",
url="https://github.com/haxsaw/hikaru",
download_url=f"https://github.com/haxsaw/hikaru/archive/{__version__}.tar.gz",
keywords=["Kubernetes", "modelling", "YAML", "JSON", "modeling",
"translate", "translator", "reformatter", "transform"],
install_requires=get_requirements(),
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
"Typing :: Typed"],
license="MIT"
)