This repository was archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.47 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.47 KB
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
from setuptools import setup
from firestone import __version__
setup(
name='django-firestone',
packages=('firestone', ),
version=__version__,
description='REST API Framework',
author='C. Paschalides',
author_email='already.late@gmail.com',
license='WTFPL',
url='http://github.com/stargazer/django-firestone',
keywords=('firestone', 'django-firestone', 'rest', 'restful', 'api', 'crud'),
install_requires=(
'Django',
'django-preserialize',
'django-endless-pagination',
'itsdangerous',
'django-extensions', # Required to interact easily with the testproject
'model-mommy', # Required for the tests
'coverage', # Required for test coverage on Travis C.I.
'sphinx_rtd_theme', # Sphinx theme
'tablib', # For excel serialization
),
tests_require=(), # Kept it empty and instead moved all dependencies on
# ``install_requires``, which makes for way better dependency
# resolution.
test_suite='runtests.run',
zip_safe=False,
classifiers=(
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'Development Status :: 4 - Beta',
),
)