-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (45 loc) · 1.37 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
version = '0.9.4'
long_description = open("README.txt").read()
long_description += """
CHANGES
==========
"""
long_description += open("CHANGES.txt").read()
setup(name='fa.extjs',
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",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
],
keywords='extjs formalchemy pyramid',
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/extjs': [
('*.py', 'lingua_python', None ),
('templates/**.pt', 'chameleon_xml', None ),
]},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'FormAlchemy',
'pyramid_formalchemy',
'pyramid',
'simplejson',
'fanstatic',
'js.extjs',
],
entry_points="""
[fanstatic.libraries]
fa.extjs = fa.extjs.fanstatic_resources:library
""",
)