forked from Pegase745/sqlalchemy-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (66 loc) · 1.95 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
from setuptools import setup
__VERSION__ = '2.0.1'
FLASK_EXAMPLE = [
'Flask',
'jinja2',
'flask_sqlalchemy',
]
PYRAMID_EXAMPLE = [
'pyramid',
'pyramid_jinja2',
'pyramid_debugtoolbar',
'pyramid_tm',
'SQLAlchemy',
'transaction',
'zope.sqlalchemy',
'waitress',
]
setup(
name='sqlalchemy-datatables',
version=__VERSION__,
description='SQLAlchemy integration of jQuery DataTables',
long_description=open('README.rst').read(),
license='MIT',
keywords='sqlalchemy datatables jquery pyramid flask dt1.10',
author='Michel Nemnom',
author_email='[email protected]',
url='https://github.com/pegase745/sqlalchemy-datatables',
packages=['datatables'],
include_package_data=True,
zip_safe=False,
install_requires=[
'sqlalchemy',
'python-dateutil',
],
extras_require={
'dev': [
'faker',
'flake8',
'flake8-docstrings',
'isort',
# TODO: Remove the pinning of deps version once issue
# https://github.com/z4r/python-coveralls/issues/66
# is resolved.
'pytest<4',
'pytest-cov>= 2.4.0,< 2.6',
'yapf',
],
'examples': [FLASK_EXAMPLE + PYRAMID_EXAMPLE]
},
py_modules=['datatables'],
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Pyramid',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
])