PageRenderTime 30ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/setup.py

https://bitbucket.org/gawel/fajquery
Python | 48 lines | 46 code | 2 blank | 0 comment | 1 complexity | 7beac13489d416af068af356247c750c MD5 | raw file
Possible License(s): LGPL-3.0, LGPL-2.1
  1. from setuptools import setup, find_packages
  2. import os
  3. version = '0.8'
  4. long_description = open("README.txt").read()
  5. long_description += """
  6. CHANGES
  7. ==========
  8. """
  9. long_description += open("CHANGES.txt").read()
  10. setup(name='fa.jquery',
  11. version=version,
  12. description="jQuery widgets for formalchemy",
  13. long_description=long_description,
  14. # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
  15. classifiers=[
  16. "Programming Language :: Python",
  17. "Topic :: Software Development :: Libraries :: Python Modules",
  18. ],
  19. keywords='jquery ajax widgets',
  20. author='Gael Pasgrimaud',
  21. author_email='gael@gawel.org',
  22. url='http://www.gawel.org/docs/fa.jquery/index.html',
  23. license='MIT',
  24. packages=find_packages(exclude=['ez_setup']),
  25. namespace_packages=['fa'],
  26. include_package_data=True,
  27. zip_safe=False,
  28. install_requires=[
  29. 'setuptools',
  30. 'FormAlchemy',
  31. 'WebHelpers',
  32. 'simplejson',
  33. 'textile',
  34. 'postmarkup',
  35. 'markdown',
  36. 'mako',
  37. ],
  38. entry_points="""
  39. [paste.app_factory]
  40. main = fa.jquery.wsgi:StaticApp
  41. test = fa.jquery.app:make_app
  42. [paste.filter_factory]
  43. demo = fa.jquery.app:make_demo
  44. """,
  45. )