-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (49 loc) · 1.83 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
56
57
58
59
from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
reqLines = f.readlines()
REQUIREMENTS = [reqLine.replace('\r', '').replace('\n', '') for reqLine in reqLines]
VERSION = '1.0.22'
PACKAGE_NAME = 'HelmState'
PACKAGE_CONSOLE_NAME = 'helmstate'
setup(
name=PACKAGE_NAME, # Required
version=VERSION, # Required
description='Helm state tool', # Required
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional
url='https://github.com/hansehe/HelmState', # Optional
author='Hans Erik Heggem', # Optional
author_email='hans.erik.heggem@gmail.com', # Optional
include_package_data=True,
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='Helm State', # Optional
packages=find_packages(exclude=['contrib', 'docs', '*tests']), # Required
install_requires=REQUIREMENTS, # Optional
extras_require={ # Optional
'dev': ['check-manifest'],
'test': ['coverage'],
},
entry_points={ # Optional
'console_scripts': [
f'{PACKAGE_CONSOLE_NAME}={PACKAGE_NAME}:main',
],
}
)