-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.2 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
# -*- coding: utf-8 -*-
import sys, 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=[
"six",
"TurboGears2 >= 2.1.4",
"tgext.pluggable"
]
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(
name='tgapp-googlePlusAuth',
version='0.0.9',
description='Google Authentication for TurboGears2',
long_description=README,
author='AXANT',
author_email='[email protected]',
url='https://github.com/axant/tgapp-googleplusauth',
keywords='turbogears2.application',
packages=find_packages(exclude=['ez_setup']),
install_requires=install_requires,
include_package_data=True,
package_data={'googleplusauth': [
'i18n/*/LC_MESSAGES/*.mo',
'templates/*/*',
'public/*/*'
]},
message_extractors={'googleplusauth': [
('**.py', 'python', None),
('templates/**.html', 'genshi', None),
('public/**', 'ignore', None)
]},
entry_points="""
""",
zip_safe=False
)