mirror of
https://github.com/wassname/pyramid_formalchemy.git
synced 2026-06-27 16:10:40 +08:00
50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
import os
|
|
import sys
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
README = open(os.path.join(here, 'README.txt')).read()
|
|
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
|
|
|
|
requires = [
|
|
'pyramid',
|
|
'SQLAlchemy',
|
|
'transaction',
|
|
'repoze.tm2',
|
|
'zope.sqlalchemy',
|
|
'WebError',
|
|
]
|
|
|
|
if sys.version_info[:3] < (2,5,0):
|
|
requires.append('pysqlite')
|
|
|
|
setup(name='pyramidapp',
|
|
version='0.0',
|
|
description='pyramidapp',
|
|
long_description=README + '\n\n' + CHANGES,
|
|
classifiers=[
|
|
"Programming Language :: Python",
|
|
"Framework :: Pylons",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
],
|
|
author='',
|
|
author_email='',
|
|
url='',
|
|
keywords='web wsgi bfg pylons pyramid',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
test_suite='pyramidapp',
|
|
install_requires = requires,
|
|
entry_points = """\
|
|
[paste.app_factory]
|
|
main = pyramidapp:main
|
|
jquery = pyramidapp.jquery:main
|
|
security = pyramidapp.security:main
|
|
""",
|
|
paster_plugins=['pyramid'],
|
|
)
|
|
|