-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.09 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
from __future__ import absolute_import, print_function, unicode_literals
from setuptools import setup, find_packages
try:
LONG_DESCRIPTION = open('README.rst').read()
except IOError:
LONG_DESCRIPTION = ''
setup(
name='djangorestframework-constant-field',
version='0.9.1',
description='A simple Constant Field definition for Django REST Framework',
long_description=LONG_DESCRIPTION,
author='Scott Walton',
author_email='[email protected]',
license='Public Domain',
packages=find_packages(),
url='https://github.com/mypebble/djangorestframework-constant-field.git',
install_requires=['django', 'djangorestframework'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
]
)