2012-05-01 20:42:10 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
2016-01-29 14:28:36 +00:00
|
|
|
with open(os.path.join(here, 'README.txt')) as f:
|
|
|
|
README = f.read()
|
|
|
|
with open(os.path.join(here, 'CHANGES.txt')) as f:
|
|
|
|
CHANGES = f.read()
|
2012-05-01 20:42:10 +00:00
|
|
|
|
|
|
|
requires = [
|
|
|
|
'pyramid',
|
|
|
|
'waitress',
|
2016-01-31 08:28:15 +00:00
|
|
|
'transaction',
|
|
|
|
'zope.sqlalchemy',
|
|
|
|
'SQLAlchemy',
|
|
|
|
'psycopg2',
|
2012-05-01 20:42:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
setup(name='brewman',
|
2014-05-24 13:45:45 +00:00
|
|
|
version='3.3',
|
2012-05-01 20:42:10 +00:00
|
|
|
description='brewman',
|
|
|
|
long_description=README + '\n\n' + CHANGES,
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Framework :: Pylons",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
|
|
],
|
2012-12-07 18:10:21 +00:00
|
|
|
author='Tanshu',
|
|
|
|
author_email='brewman@tanshu.com',
|
|
|
|
url='http://tanshu.com',
|
2012-05-01 20:42:10 +00:00
|
|
|
keywords='web pyramid pylons',
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=requires,
|
|
|
|
tests_require=requires,
|
|
|
|
test_suite="brewman",
|
|
|
|
entry_points = """\
|
|
|
|
[paste.app_factory]
|
|
|
|
main = brewman:main
|
|
|
|
""",
|
|
|
|
)
|
|
|
|
|