-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 960 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 960 Bytes
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
import os
from setuptools import setup, find_packages
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name='python-rest-client',
version='0.0.svn.13.1',
description='Python REST Client.',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
author="Ben O'Steen",
author_email='',
maintainer='Erik LaBianca',
maintainer_email='erik.labianca@gmail.com',
url='https://github.com/easel/python-rest-client',
license='FedoraCommons',
include_package_data=True,
packages=('python_rest_client',),
install_requires=['httplib2'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Fedora Commons',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)