3
from setuptools import setup, find_packages
5
here = os.path.abspath(os.path.dirname(__file__))
6
README = open(os.path.join(here, 'README.txt')).read()
7
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
9
requires = ['pyramid', 'pyramid_debugtoolbar']
11
setup(name='charmworld',
13
description='charmworld',
14
long_description=README + '\n\n' + CHANGES,
16
"Programming Language :: Python",
17
"Framework :: Pylons",
18
"Topic :: Internet :: WWW/HTTP",
19
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
24
keywords='web pyramid pylons',
25
packages=find_packages(),
26
include_package_data=True,
28
install_requires=requires,
29
tests_require=requires,
30
test_suite="charmworld",
33
main = charmworld:main
35
paster_plugins=['pyramid'],