-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.51 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
from codecs import open
from setuptools import setup, find_packages
DESCRIPTION = "Simple HTTP PUT request handler for Django REST Framework(DRF) "
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()
REQUIRES_PYTHON = '>=2.7'
setup(
name = 'drf-pretty-update',
version = '0.1.5',
description = DESCRIPTION,
long_description = readme,
long_description_content_type = 'text/markdown',
url = "https://github.com/yezyilomo/drf-pretty-update",
author = 'Yezy Ilomo',
license = 'MIT',
packages = find_packages(exclude=('tests','test')),
package_data={'': ['LICENSE']},
install_requires = ['djangorestframework'],
python_requires = REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
test_suite = "tests.runtests.runtests",
)