forked from FormAlchemy/fa.jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (61 loc) · 1.85 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
from setuptools import setup, find_packages
version = '0.9.5-bluej100-2'
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'],
message_extractors = { 'fa/jquery': [
('*.py', 'lingua_python', None ),
('templates/**.pt', 'chameleon_xml', None ),
]},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'FormAlchemy',
'WebHelpers',
'simplejson',
'textile',
'postmarkup',
'markdown',
'fanstatic',
'js.jquery',
'js.jquery_form',
'js.jquery_markitup',
'js.jqueryui',
'js.jqueryui_selectmenu',
'js.jqueryui_syronex_colorpicker',
'js.jquery_jgrowl',
'js.tinymce',
'js.jqgrid',
'mako',
'Babel',
],
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
[fanstatic.libraries]
fa = fa.jquery.fanstatic_resources:fa_library
""",
)