File: setup.py_tmpl

package info (click to toggle)
python-authkit 0.4.1~r143-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 740 kB
  • ctags: 703
  • sloc: python: 4,643; makefile: 39; sh: 33
file content (29 lines) | stat: -rw-r--r-- 950 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
import sys, os

version = {{repr(version or "0.0")}}

setup(name={{repr(project)}},
      version=version,
      description="{{description or ''}}",
      long_description="""\
{{long_description or ''}}""",
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      keywords={{repr(keywords or '')}},
      author={{repr(author or '')}},
      author_email={{repr(author_email or '')}},
      url={{repr(url or '')}},
      license={{repr(license_name or '')}},
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe={{repr(bool(zip_safe or False))}},
      install_requires=[
          # -*- Extra requirements: -*-
          "AuthKit>=0.4,<=0.5",
      ],
      entry_points="""
      # -*- Entry points: -*-
      [authkit.method]
      {{package}}={{package}}:make_handler
      """,
      )