forked from mcgid/python-dreamhostapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (28 loc) · 1.04 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
36
37
38
39
40
41
42
from setuptools import setup
from codecs import open # Following PyPUG advice; not neccessary in Python 3.x
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='dreamhostapi',
version='0.1.0',
description='A Python wrapper around DreamHost\'s API',
long_description=long_description,
url='https://github.com/mcgid/python-dreamhostapi',
author='mcgid',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
# Untested on any other Python version
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='DreamHost API interaction wrapper',
packages=['dreamhostapi'],
install_requires=['requests'],
)