| Total Complexity | 0 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import os |
||
| 2 | |||
| 3 | from setuptools import find_packages, setup |
||
| 4 | |||
| 5 | here = os.path.abspath(os.path.dirname(__file__)) |
||
| 6 | |||
| 7 | with open(os.path.join(here, "README.rst")) as f: |
||
| 8 | README = f.read() |
||
| 9 | |||
| 10 | setup( |
||
| 11 | name="pyramid_tut", |
||
| 12 | version="0.0", |
||
| 13 | description="pyramid_tut", |
||
| 14 | long_description=README, |
||
| 15 | classifiers=[ |
||
| 16 | "Programming Language :: Python", "Framework :: Pyramid", |
||
| 17 | "Topic :: Internet :: WWW/HTTP", |
||
| 18 | "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" |
||
| 19 | ], |
||
| 20 | author="", |
||
| 21 | author_email="", |
||
| 22 | url="", |
||
| 23 | keywords="web wsgi bfg pylons pyramid", |
||
| 24 | packages=find_packages(), |
||
| 25 | include_package_data=True, |
||
| 26 | zip_safe=False, |
||
| 27 | test_suite="pyramid_tut", |
||
| 28 | install_requires=[], |
||
| 29 | entry_points="""\ |
||
| 30 | [paste.app_factory] |
||
| 35 |