setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 25
dl 0
loc 30
rs 10
c 0
b 0
f 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]
31
      main = pyramid_tut:main
32
      [console_scripts]
33
      pyramid_tut_initdb = pyramid_tut.scripts.initializedb:main
34
      """)
35