File: setup.py

package info (click to toggle)
python-django-overextends 0.4.0-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 176 kB
  • sloc: python: 207; makefile: 27
file content (35 lines) | stat: -rw-r--r-- 1,236 bytes parent folder | download | duplicates (2)
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
30
31
32
33
34
35

from setuptools import setup, find_packages


setup(
    name = "django-overextends",
    version = __import__("overextends").__version__,
    author = "Stephen McDonald",
    author_email = "stephen.mc@gmail.com",
    description = ("A Django reusable app providing the ability to use "
                   "circular template inheritance."),
    long_description = open("README.rst").read(),
    url = "http://github.com/stephenmcd/django-overextends",
    zip_safe = False,
    include_package_data = True,
    packages = find_packages(),
    install_requires = [
        "sphinx-me >= 0.1.2",
        "django >= 1.7, < 1.9",
    ],
    classifiers = [
        "Development Status :: 5 - Production/Stable",
        "Environment :: Web Environment",
        "Intended Audience :: Developers",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        "Framework :: Django",
        "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
        "Topic :: Internet :: WWW/HTTP :: Site Management",
    ]
)