-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (41 loc) · 1.22 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
# -*- 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=[
"TurboGears2 >= 2.3.0",
"tgext.pluggable",
"docutils",
"tgext.admin >= 0.7.1",
"tgext.crud >= 0.8.1",
"filedepot",
"kajiki",
]
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(
name='tgapp-flatpages',
version='0.4.0',
description='Pluggable application to manage static pages (/about) on DB (sqlalchemy or ming) with RST or HTML',
long_description=README,
author='Alessandro Molina',
author_email='[email protected]',
url='https://github.com/axant/tgapp-flatpages',
keywords='turbogears2.application',
packages=find_packages(exclude=['ez_setup']),
install_requires=install_requires,
include_package_data=True,
package_data={'tgapp.flatpages': ['i18n/*/LC_MESSAGES/*.mo',
'templates/*/*',
'public/*/*']},
entry_points="""
""",
zip_safe=False
)