-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
69 lines (66 loc) · 1.99 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import codecs
from setuptools import setup, find_packages
tests_require = [
'Flask-Testing>=0.4.1',
'Flask-Principal>=0.4.0',
'Flask-SQLAlchemy>=2.0',
'Flask-MongoEngine>=0.7.1',
'peewee==2.*',
'nose>=1.1.2',
]
setup(
name='Flask-Potion',
version='0.16.0',
packages=find_packages(exclude=['*tests*']),
url='http://potion.readthedocs.org/en/latest/',
license='MIT',
author='Lars Schöning',
author_email='[email protected]',
description='Powerful REST API framework for Flask and SQLAlchemy',
long_description=codecs.open('README.rst', encoding='utf-8').read(),
test_suite='nose.collector',
tests_require=tests_require,
install_requires=[
'Flask>=0.10',
'jsonschema>=2.4.0',
'aniso8601>=0.84',
'blinker>=1.3',
'six>=1.8.0',
'rfc3987',
'strict-rfc3339'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
extras_require={
'docs': ['sphinx', 'Flask-Principal', 'Flask-SQLAlchemy', 'peewee'],
'principal': [
'Flask-Principal',
],
'sqlalchemy': [
'Flask-SQLAlchemy>=2.0'
],
'peewee': [
'peewee==2.*'
],
'mongoengine': [
'Flask-MongoEngine>=0.7.0'
],
'tests': tests_require,
}
)