setup.py 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # -*- coding: utf-8 -*-
  2. # quickstarted Options:
  3. # sqlalchemy: True
  4. # auth: sqlalchemy
  5. # mako: True
  6. import sys
  7. from setuptools.command.develop import develop
  8. # This is just a work-around for a Python2.7 issue causing
  9. # interpreter crash at exit when trying to log an info message.
  10. try:
  11. import logging
  12. import multiprocessing
  13. except:
  14. pass
  15. try:
  16. from setuptools import setup, find_packages
  17. except ImportError:
  18. from ez_setup import use_setuptools
  19. use_setuptools()
  20. from setuptools import setup, find_packages
  21. py_version = sys.version_info[:2]
  22. DESCRIPTION = ('Tracim is a plateform software designed to improve '
  23. 'traceability and productivity in collaborative work.')
  24. class DevelopWithCompileCatalog(develop):
  25. """Extend base develop setup.py command."""
  26. def run(self):
  27. """Compiles binary translation files from catalog."""
  28. from babel.messages.frontend import compile_catalog
  29. compiler = compile_catalog(self.distribution)
  30. option_dict = self.distribution.get_option_dict('compile_catalog')
  31. compiler.domain = option_dict['domain'][1]
  32. compiler.directory = option_dict['directory'][1]
  33. compiler.run()
  34. super().run()
  35. classifiers = [
  36. 'License :: OSI Approved :: GNU Affero General Public License v3',
  37. 'Programming Language :: Python',
  38. 'Programming Language :: Python :: 3.4',
  39. 'Programming Language :: Python :: 3.5',
  40. 'Programming Language :: Python :: 3.6',
  41. ]
  42. testpkgs = [
  43. 'WebTest >= 1.2.3',
  44. 'nose',
  45. 'coverage',
  46. 'gearbox'
  47. ]
  48. install_requires = [
  49. 'TurboGears2==2.3.7',
  50. 'Genshi',
  51. 'Mako',
  52. 'zope.sqlalchemy >= 0.4',
  53. 'sqlalchemy',
  54. 'alembic',
  55. 'repoze.who',
  56. 'who_ldap>=3.2.1',
  57. 'python-ldap-test==0.2.1',
  58. 'unicode-slugify==0.1.3',
  59. 'pytz==2014.7',
  60. 'rq==0.7.1',
  61. 'filedepot>=0.5.0',
  62. 'preview-generator'
  63. ]
  64. setup_requires = [
  65. 'babel',
  66. ],
  67. setup(
  68. name='tracim',
  69. version='1.0.0',
  70. description=DESCRIPTION,
  71. author='Damien ACCORSI',
  72. author_email='damien.accorsi@free.fr',
  73. url='https://github.com/tracim/tracim',
  74. packages=find_packages(exclude=['ez_setup']),
  75. install_requires=install_requires,
  76. include_package_data=True,
  77. test_suite='nose.collector',
  78. tests_require=testpkgs,
  79. package_data={
  80. 'tracim': [
  81. 'i18n/*/LC_MESSAGES/*.mo',
  82. 'templates/*/*',
  83. 'public/*/*',
  84. ]
  85. },
  86. message_extractors={
  87. 'tracim': [
  88. ('**.py', 'python', None),
  89. ('templates/**.mak', 'mako', {'input_encoding': 'utf-8'}),
  90. ('public/**', 'ignore', None)
  91. ]
  92. },
  93. entry_points={
  94. 'paste.app_factory': [
  95. 'main = tracim.config.middleware:make_app'
  96. ],
  97. 'gearbox.plugins': [
  98. 'turbogears-devtools = tg.devtools'
  99. ],
  100. 'gearbox.commands': [
  101. 'ldap_server = tracim.command.ldap_test_server:LDAPTestServerCommand',
  102. 'user_create = tracim.command.user:CreateUserCommand',
  103. 'user_update = tracim.command.user:UpdateUserCommand',
  104. 'mail sender = tracim.command.mail:MailSenderCommend',
  105. ]
  106. },
  107. dependency_links=[
  108. 'http://github.com/algoo/preview-generator/tarball/master#egg=preview_generator-1.0',
  109. ],
  110. zip_safe=False,
  111. cmdclass={
  112. 'develop': DevelopWithCompileCatalog,
  113. },
  114. )