forked from ColtonProvias/sqlalchemy-jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.48 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
"""
SQLAlchemy-JSONAPI
------------------
JSON API serializer for SQLAlchemy that aims to meet the full JSON API spec as
published at http://jsonapi.org/format. Also includes Flask adapter.
Full documentation is available at:
https://sqlalchemy-jsonapi.readthedocs.org/
GitHub at https://github.com/coltonprovias/sqlalchemy-jsonapi
"""
from setuptools import setup
import sys
requirements = ['SQLAlchemy', 'inflection']
if sys.version_info[0] != 3 or sys.version_info[1] < 4:
requirements.append('enum34')
setup(name='SQLAlchemy-JSONAPI',
version='4.0.9',
url='http://github.com/coltonprovias/sqlalchemy-jsonapi',
license='MIT',
author='Colton J. Provias',
author_email='[email protected]',
description='JSONAPI Mixin for SQLAlchemy',
long_description=__doc__,
packages=['sqlalchemy_jsonapi'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules'
])