forked from FormAlchemy/fa.jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 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
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
import os
version = '0.9.3'
long_description = open("README.txt").read()
long_description += """
CHANGES
==========
"""
long_description += open("CHANGES.txt").read()
setup(name='fa.jquery',
version=version,
description="jQuery widgets for formalchemy",
long_description=long_description,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='jquery ajax widgets',
author='Gael Pasgrimaud',
author_email='[email protected]',
url='http://docs.formalchemy.org/fa.jquery/index.html',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['fa'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'FormAlchemy',
'WebHelpers',
'simplejson',
'textile',
'postmarkup',
'markdown',
'mako',
],
entry_points="""
[paste.app_factory]
main = fa.jquery.wsgi:StaticApp
test = fa.jquery.app:make_app
[paste.filter_factory]
demo = fa.jquery.app:make_demo
""",
)