-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1013 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 1013 Bytes
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
import os.path as op
from setuptools import setup, find_packages
with open(op.join(op.abspath(op.dirname(__file__)), "VERSION"), "r") as v:
VERSION = v.read().replace("\n", "")
setup(
name='rancher_upgrader',
version=VERSION,
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'rancher-upgrader = rancher_upgrader.rancher_upgrader:main',
]
},
url="https://github.com/cr0hn/rancher-upgrader",
author='Daniel Garcia (cr0hn)',
author_email='cr0hn@cr0hn.com',
description='Small utility to upgrade Rancher Services',
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
],
)