-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·72 lines (65 loc) · 1.99 KB
/
setup.py
File metadata and controls
executable file
·72 lines (65 loc) · 1.99 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
66
67
68
69
70
71
72
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from codecs import open
from setuptools import setup
def read(*paths):
"""Build a file path from *paths and return the contents."""
with open(os.path.join(*paths), 'r', 'utf-8') as f:
return f.read()
docs_requires = [
'Sphinx==1.3.1',
'releases==0.7.0',
]
requires = [
'schema>=0.3.1',
'requests>=2.6.0',
]
tests_requires = [
'coverage==3.7.1',
'httpretty>=0.8.0,!=0.8.1,!=0.8.2,!=0.8.3,!=0.8.7,!=0.8.8,!=0.8.9',
'pytest-httpretty==0.2.0',
'pytest==2.7.0',
'python-dateutil==2.4.2',
'six==1.9.0',
'tox==1.9.2',
'virtualenv>=12.0.2,!=12.0.4,!=12.0.5,!=12.0.6,!=12.0.7',
]
setup(
name='durga',
version='0.2.0.dev2',
description='Create easy to use Python objects for REST resources including schema validation.', # noqa
long_description=read('README.rst'),
author='transcode',
author_email='team@transcode.de',
url='https://github.com/transcode-de/durga',
packages=[
'durga',
],
package_dir={'durga': 'durga'},
include_package_data=True,
install_requires=requires,
extras_require={
'docs': docs_requires,
'tests': tests_requires,
},
license='BSD',
zip_safe=False,
keywords='rest api json client schema validation',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP',
],
)