-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (60 loc) · 2.04 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
from setuptools import setup
from setuptools.command.test import test as TestCommand
if sys.version_info[0] == 2:
# get the Py3K compatible `encoding=` for opening files.
from io import open
HERE = os.path.abspath(os.path.dirname(__file__))
def make_readme(root_path):
consider_files = ("README.rst", "LICENSE", "CHANGELOG", "CONTRIBUTORS")
for filename in consider_files:
filepath = os.path.realpath(os.path.join(root_path, filename))
if os.path.isfile(filepath):
with open(filepath, mode="r", encoding="utf-8") as f:
yield f.read()
LICENSE = "BSD License"
URL = "https://github.com/kezabelle/django-shouty-templates"
LONG_DESCRIPTION = "\r\n\r\n----\r\n\r\n".join(make_readme(HERE))
SHORT_DESCRIPTION = "Applies a monkeypatch which forces Django's template language to error far more loudly about invalid assumptions"
KEYWORDS = (
"django",
"templates",
"DTL",
"exception",
)
setup(
name="django-shouty-templates",
version="0.2.0",
author="Keryn Knight",
author_email="django-shouty-templates@kerynknight.com",
maintainer="Keryn Knight",
maintainer_email="django-shouty-templates@kerynknight.com",
description=SHORT_DESCRIPTION[0:200],
long_description=LONG_DESCRIPTION,
packages=[],
py_modules=["shouty"],
include_package_data=True,
install_requires=[
"Django>=1.9",
],
zip_safe=False,
keywords=" ".join(KEYWORDS),
license=LICENSE,
url=URL,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: {}".format(LICENSE),
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Framework :: Django",
],
)