-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
69 lines (64 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
install_requires=[
"TurboGears2 >= 2.3.1",
"tgext.pluggable >= 0.7.1"
]
testpkgs=['WebTest >= 1.2.3',
'nose',
'coverage',
'ming',
'sqlalchemy',
'zope.sqlalchemy',
'repoze.who',
'tw2.forms',
'kajiki',
'tgext.mailer',
'formencode',
]
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(
name='tgapp-registration',
version='0.9.6',
description='Pluggable registration application for TurboGears2 with hooks for fine customization',
long_description=README,
author='Alessandro Molina',
author_email='[email protected]',
url='https://github.com/axant/tgapp-registration',
keywords='turbogears2.application',
setup_requires=[],
paster_plugins=[],
packages=find_packages(exclude=['ez_setup']),
install_requires=install_requires,
test_suite='nose.collector',
tests_require=testpkgs,
extras_require={
# Used by CI
'testing': testpkgs,
},
include_package_data=True,
package_data={'registration': ['i18n/*/LC_MESSAGES/*.mo',
'templates/*/*',
'public/*/*']},
message_extractors={'registration': [
('**.py', 'python', None),
('templates/**.html', 'genshi', None),
('templates/**.xhtml', 'kajiki', None),
('public/**', 'ignore', None)
]},
entry_points="""
""",
dependency_links=[
],
zip_safe=False
)