Le repo des sources pour le site web des JM2L
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

67 lines
1.6 KiB

  1. import os
  2. from setuptools import setup, find_packages
  3. here = os.path.abspath(os.path.dirname(__file__))
  4. with open(os.path.join(here, 'README.txt')) as f:
  5. README = f.read()
  6. with open(os.path.join(here, 'CHANGES.txt')) as f:
  7. CHANGES = f.read()
  8. ## Do not forget to run for lxml dependencies
  9. ## apt-get install libxml2-dev libxslt1-dev
  10. requires = [
  11. 'pyramid',
  12. 'pyramid_chameleon',
  13. 'pyramid_debugtoolbar',
  14. 'pyramid_tm',
  15. 'SQLAlchemy',
  16. 'transaction',
  17. 'zope.sqlalchemy',
  18. 'waitress',
  19. 'wtforms',
  20. 'webhelpers',
  21. 'lxml',
  22. 'python-slugify',
  23. 'icalendar',
  24. 'python-magic',
  25. 'Pillow',
  26. 'pyramid_exclog',
  27. 'repoze.sendmail',
  28. 'pyramid_mailer',
  29. 'apscheduler',
  30. 'qrcode',
  31. 'reportlab',
  32. 'passlib',
  33. 'argon2_cffi',
  34. 'paginate'
  35. ]
  36. setup(name='JM2L',
  37. version='0.1',
  38. description='JM2L',
  39. long_description=README + '\n\n' + CHANGES,
  40. classifiers=[
  41. "Programming Language :: Python",
  42. "Framework :: Pyramid",
  43. "Topic :: Internet :: WWW/HTTP",
  44. "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
  45. ],
  46. author='tr4ck3ur',
  47. author_email='tr4ck3ur@style-python.fr',
  48. url='http://www.style-python.fr',
  49. keywords='web wsgi bfg pylons pyramid',
  50. packages=find_packages(),
  51. include_package_data=True,
  52. zip_safe=False,
  53. test_suite='jm2l',
  54. install_requires=requires,
  55. entry_points="""\
  56. [paste.app_factory]
  57. main = jm2l:main
  58. [console_scripts]
  59. initialize_JM2L_db = jm2l.scripts.initializedb:main
  60. """,
  61. )