forked from openshift/python-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 721 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 = "Unknown",
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.
)