-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (60 loc) · 1.92 KB
/
setup.py
File metadata and controls
70 lines (60 loc) · 1.92 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
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
"""
Web2py Utils
============
Contains lots of goodies for use with web2py and web development
About
=====
After using web2py for quite a while I have an eclectic mix of utilities that
I seem to be using for almost every web2py app I develop now!
I needed both a way to organize the same code across multiple web2py apps and I
also wanted to share this code with the world!
Lots of Goodies!
================
* Common shortcuts
* py2jquery module
* Heirarchical category module.
* Database store configuration settings
* Class based menu builder
* syntax highlighting
* Output compression
* Pagination
* Stop words lists
* Levenstien algorithm
* NGram algorithm
* New SQLHTML widgets (able to pass class attributes to them)
* Convert wordpress xml export into a python dict!
* Comments, tagging, and pingback/trackback plugins!
* Unittesting, code coverage.
"""
from setuptools import setup, find_packages
import sys, os
from web2py_utils import __VERSION__, __RELEASE__
version = __VERSION__
setup(name='web2py_utils',
version=version,
description="Web2py Utilities",
long_description=__doc__,
keywords='web2py',
author='Thadeus Burgess',
author_email='thadeusb@thadeusb.com',
url='http://packages.python.org/web2py_utils/',
license='GPL v3',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
],
entry_points="""
""",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)