~jcsackett/charmworld/bac-tag-constraints

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: kapil.foss at gmail
  • Date: 2011-10-08 17:22:53 UTC
  • Revision ID: kapil.foss@gmail.com-20111008172253-utsq8socdsx047mw
charmworld pyramid starter

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import os
 
2
 
 
3
from setuptools import setup, find_packages
 
4
 
 
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()
 
8
 
 
9
requires = ['pyramid', 'pyramid_debugtoolbar']
 
10
 
 
11
setup(name='charmworld',
 
12
      version='0.0',
 
13
      description='charmworld',
 
14
      long_description=README + '\n\n' +  CHANGES,
 
15
      classifiers=[
 
16
        "Programming Language :: Python",
 
17
        "Framework :: Pylons",
 
18
        "Topic :: Internet :: WWW/HTTP",
 
19
        "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
 
20
        ],
 
21
      author='',
 
22
      author_email='',
 
23
      url='',
 
24
      keywords='web pyramid pylons',
 
25
      packages=find_packages(),
 
26
      include_package_data=True,
 
27
      zip_safe=False,
 
28
      install_requires=requires,
 
29
      tests_require=requires,
 
30
      test_suite="charmworld",
 
31
      entry_points = """\
 
32
      [paste.app_factory]
 
33
      main = charmworld:main
 
34
      """,
 
35
      paster_plugins=['pyramid'],
 
36
      )
 
37