forked from ikeikeikeike/tastypie-queryset-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.58 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
43
44
45
46
47
48
import os
from setuptools import setup, find_packages
# from setuptools.command.test import test
version = '0.7.3'
name = 'tastypie-queryset-client'
short_description = 'Client for Tastypie. Provide operation similar to the Django Model API'
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir != '':
os.chdir(root_dir)
extensions_dir = 'queryset_client'
setup(
name=name,
version=version,
description=short_description,
long_description=long_description,
classifiers=[
# "Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
# 'Environment :: Console',
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=["tastypie", "client", "django", "rest", "api", ],
author="Tatsuo Ikeda",
author_email="jp.ne.co.jp at gmail",
url="https://github.com/ikeikeikeike/tastypie-queryset-client",
license="MIT License",
packages=find_packages(),
include_package_data=True,
data_files=data_files,
install_requires=["slumber", "simplejson", "requests", "python-dateutil"],
# cmdclass={'test': pytest_test},
# tests_require=['pytest'],
)