This repository was archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.2 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.2 KB
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
from setuptools import setup
import os
desc = open("readme.rst").read() if os.path.isfile("readme.rst") else ""
setup(
name='datatables',
version='0.4.9',
packages=['datatables'],
url='https://github.com/orf/datatables/',
license='MIT',
long_description=desc,
keywords='sqlalchemy datatables jquery pyramid flask',
author='Tom',
author_email='tom@tomforb.es',
description='Integrates SQLAlchemy with DataTables (framework agnostic)',
zip_safe=False,
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Pyramid',
'Framework :: Flask',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)