forked from pbkwee/rimuhosting-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (32 loc) · 1.14 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
__author__ = "Peter Bryant <[email protected]>"
import os
from setuptools import setup
NAME = "rimuhostingk8s"
GITHUB_URL = "https://github.com/pbkwee/rimuhosting-k8s"
DESCRIPTION = "Python interface to RimuHosting API"
VERSION = "0.0.1"
REQUIREMENTS = ['rimuapi >= 0.0.6' ]
setup(name=NAME,
version=VERSION,
download_url="%s/zipball/master" % GITHUB_URL,
description=DESCRIPTION,
install_requires=REQUIREMENTS,
author='Peter Bryant',
author_email='[email protected]',
url=GITHUB_URL,
license='GPLv3+',
py_modules=[],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
],
)