forked from sloev/python-lambdarest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (61 loc) · 1.8 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
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 -*-
from setuptools import setup
import os
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
readme = read_md('README.md')
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'jsonschema>=2.5.1',
'strict_rfc3339>=0.7',
'werkzeug>=0.14.1'
]
test_requirements = [
'coverage==4.1',
'PyYAML==3.11',
'pytest==2.9.2',
'mock>=2.0.0',
'pytest-readme>=1.0.0',
'prospector==0.12.11',
'jsonschema>=2.5.1',
'strict_rfc3339>=0.7'
] + requirements
extras = {
'test': test_requirements
}
metadata = {}
version_filename = os.path.join(os.path.dirname(__file__), 'lambdarest','__version__.py')
exec(open(version_filename).read(), None, metadata)
setup(
name='lambdarest',
version=metadata['__version__'],
description="pico framework for aws lambda with optional json schema validation",
long_description=readme + '\n\n' + history,
author="jgv",
author_email='jgv@trustpilot.com',
url='https://github.com/trustpilot/python-lambdarest',
packages=[
'lambdarest',
],
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords='lambda aws rest json schema jsonschema',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
test_suite='tests',
tests_require=test_requirements,
extras_require=extras
)