-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 951 Bytes
/
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
from setuptools import setup, find_packages
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_json',
author='Mateusz Czubak',
author_email='mczubak@gmail.com',
url='https://github.com/matino/falcon-json',
version='0.0.1',
classifiers=classifiers,
description='Falcon JSON helpers',
long_description=open('README.md').read(),
keywords='falcon json api',
packages=find_packages(include=('falcon_json*',)),
install_requires=open('requirements.txt').read(),
include_package_data=True,
license='Apache License 2.0',
)