-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·65 lines (53 loc) · 1.55 KB
/
setup.py
File metadata and controls
executable file
·65 lines (53 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
from __future__ import absolute_import, unicode_literals
import os
from setuptools import setup, find_packages
__doc__ = "Django CoreAPI client"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
readme = read('README.rst')
changelog = read('CHANGELOG.rst')
version = read('VERSION').strip()
install_requires = [
'Django>=1.5',
'coreapi>=2.3',
]
tests_require = [
'pytest>=3.0',
]
dev_require = [
'django_extensions',
'ipython',
]
extras_require = {
'testing': tests_require,
'dev': dev_require,
}
setup(
name='django-coreapi-client',
version=version,
description=__doc__,
long_description=readme + '\n\n' + changelog,
author='murchik',
author_email='murchik@protonmail.com',
url='https://github.com/vericant/django-coreapi-client',
packages=[package for package in find_packages()],
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
license="GPLv3",
zip_safe=True,
keywords='django-coreapi-client',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: English',
'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',
],
)