4 from setuptools import setup, find_packages
6 here = os.path.abspath(os.path.dirname(__file__))
7 README = open(os.path.join(here, 'README.md')).read()
8 CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
14 'repoze.tm2>=1.0b1', # default_commit_veto
26 if sys.version_info[:3] < (2,5,0):
27 requires.append('pysqlite')
31 description='XonStat',
32 long_description=README + '\n\n' + CHANGES,
34 "Programming Language :: Python",
35 "Framework :: Pylons",
36 "Topic :: Internet :: WWW/HTTP",
37 "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
42 keywords='web wsgi bfg pylons pyramid',
43 packages=find_packages(),
44 include_package_data=True,
47 install_requires = requires,
52 paster_plugins=['pyramid'],