|
@@ -1,76 +0,0 @@
|
1
|
|
-# -*- coding: utf-8 -*-
|
2
|
|
-#quickstarted Options:
|
3
|
|
-#
|
4
|
|
-# sqlalchemy: True
|
5
|
|
-# auth: sqlalchemy
|
6
|
|
-# mako: True
|
7
|
|
-#
|
8
|
|
-#
|
9
|
|
-
|
10
|
|
-#This is just a work-around for a Python2.7 issue causing
|
11
|
|
-#interpreter crash at exit when trying to log an info message.
|
12
|
|
-try:
|
13
|
|
- import logging
|
14
|
|
- import multiprocessing
|
15
|
|
-except:
|
16
|
|
- pass
|
17
|
|
-
|
18
|
|
-import sys
|
19
|
|
-py_version = sys.version_info[:2]
|
20
|
|
-
|
21
|
|
-try:
|
22
|
|
- from setuptools import setup, find_packages
|
23
|
|
-except ImportError:
|
24
|
|
- from ez_setup import use_setuptools
|
25
|
|
- use_setuptools()
|
26
|
|
- from setuptools import setup, find_packages
|
27
|
|
-
|
28
|
|
-testpkgs=['WebTest >= 1.2.3',
|
29
|
|
- 'nose',
|
30
|
|
- 'coverage',
|
31
|
|
- 'gearbox'
|
32
|
|
- ]
|
33
|
|
-
|
34
|
|
-install_requires=[
|
35
|
|
- "TurboGears2 >= 2.3.1",
|
36
|
|
- "Genshi",
|
37
|
|
- "Mako",
|
38
|
|
- "zope.sqlalchemy >= 0.4",
|
39
|
|
- "sqlalchemy",
|
40
|
|
- "alembic",
|
41
|
|
- "repoze.who",
|
42
|
|
- ]
|
43
|
|
-
|
44
|
|
-setup(
|
45
|
|
- name='tracim',
|
46
|
|
- version='1.0.0',
|
47
|
|
- description='Tracim is plateform software designed to improve traceability and productivity in collaborative work.',
|
48
|
|
- author='Damien The POD team',
|
49
|
|
- author_email='damien.accorsi@free.fr',
|
50
|
|
- url='https://bitbucket.org/lebouquetin/tracim',
|
51
|
|
- packages=find_packages(exclude=['ez_setup']),
|
52
|
|
- install_requires=install_requires,
|
53
|
|
- include_package_data=True,
|
54
|
|
- test_suite='nose.collector',
|
55
|
|
- tests_require=testpkgs,
|
56
|
|
- package_data={'tracim': ['i18n/*/LC_MESSAGES/*.mo',
|
57
|
|
- 'templates/*/*',
|
58
|
|
- 'public/*/*']},
|
59
|
|
- message_extractors={'tracim': [
|
60
|
|
- ('**.py', 'python', None),
|
61
|
|
- ('templates/**.mak', 'mako', {'input_encoding': 'utf-8'}),
|
62
|
|
- ('public/**', 'ignore', None)]},
|
63
|
|
-
|
64
|
|
- entry_points={
|
65
|
|
- 'paste.app_factory': [
|
66
|
|
- 'main = tracim.config.middleware:make_app'
|
67
|
|
- ],
|
68
|
|
- 'gearbox.plugins': [
|
69
|
|
- 'turbogears-devtools = tg.devtools'
|
70
|
|
- ]
|
71
|
|
- },
|
72
|
|
- dependency_links=[
|
73
|
|
- "http://tg.gy/230"
|
74
|
|
- ],
|
75
|
|
- zip_safe=False
|
76
|
|
-)
|