-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (28 loc) · 1.06 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
from setuptools import setup, find_packages
# import pypandoc
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'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',
'Topic :: Software Development :: Libraries',
]
setup(
name='falcon-jsonify',
author='Andrei Regiani',
author_email='andrei.cpp@gmail.com',
url='https://github.com/AndreiRegiani/falcon-jsonify',
version='1.2',
classifiers=classifiers,
description='Falcon middleware to serialize/deserialize JSON with built-in input validation',
# long_description = pypandoc.convert('README.md', 'rst'),
keywords='falcon json jsonify validation validator middleware',
packages=find_packages(include=('falcon_json*',)),
install_requires=open('requirements.txt').read(),
include_package_data=True,
license='MIT',
)