forked from Pegase745/sqlalchemy-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.31 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
"""App configuration."""
from setuptools import setup
__VERSION__ = '1.1.0'
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'],
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 :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)