-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
40 lines (38 loc) · 1.19 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
from setuptools import setup, find_packages
with open('README.rst') as fin:
readme = fin.read()
setup(
name='django-nap',
version='0.40.0',
description='A light REST tool for Django',
long_description=readme,
author='Curtis Maloney',
author_email='[email protected]',
url='http://github.com/funkybob/django-nap',
keywords=['django', 'json', 'rest', 'api'],
packages=find_packages(where="src"),
package_dir={"": "src"},
zip_safe=False,
classifiers = [
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
requires = [
'Django (>=2.0)',
],
extras_require={
'rpc': ['requests'],
},
install_requires = [
'Django>=2.0',
],
)