-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·37 lines (32 loc) · 1.16 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__ = "Abdallah Deeb <abdallah@deeb.me>"
import os
from setuptools import setup
NAME = "RimuAPI"
GITHUB_URL = "https://github.com/pbkwee/%s" % (NAME)
DESCRIPTION = "Python interface to RimuHosting API"
VERSION = "0.0.6"
REQUIREMENTS = ['requests','objectpath','pytz' ]
setup(name=NAME,
version=VERSION,
download_url="%s/zipball/master" % GITHUB_URL,
description=DESCRIPTION,
install_requires=REQUIREMENTS,
author='Abdallah Deeb',
author_email='abdallah@deeb.me',
url=GITHUB_URL,
license='GPLv3+',
py_modules=['rimuapi'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
],
)