forked from openshift/python-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 810 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
from setuptools import setup, find_packages
setup(
name = "pyopenshift",
version = "0.2",
packages = find_packages(),
install_requires = ['requests'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['README', '*.rst', '*.txt'],
},
# metadata for upload to PyPI
author = "Peter Ruan",
author_email = "[email protected]",
description = "This is a python interface for the new Openshift REST API.",
license = "Apache v2",
keywords = "PaaS Redhat OpenShift",
url = "https://github.com/openshift/python-interface", # project home page, if any
# could also include long_description, download_url, classifiers, etc.
entry_points = """
[console_scripts]
oshift = oshift:command_line
""",
)