forked from michae1/tastypie-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (26 loc) · 963 Bytes
/
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
#! /usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = [l for l in read('tastypie_client/__init__.py').splitlines()
if l.startswith('__version__ =')][0].split("'")[1]
setup(
name='tastypie-client',
version=VERSION,
packages=find_packages(),
author='Philippe Muller',
author_email='[email protected]',
description='Client for Django-Tastypie based REST services',
long_description=read('README.rst'),
keywords='tastypie rest django requests',
install_requires=['requests>=0.11.2'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
]
)