-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·58 lines (53 loc) · 2.25 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
#!/usr/bin/env python
from os.path import dirname, join
from setuptools import setup, find_packages
version = '1.5'
def read_file(filename):
with open(join(dirname(__file__), filename)) as f:
return f.read()
setup(name='django-apptemplates',
version=version,
description='Django template loader that allows you to load and '
'override a template from a specific Django application.',
long_description=read_file('README.rst'),
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks', # noqa
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['django', 'template', 'loader'],
author='Konrad Wojas',
author_email='[email protected]',
maintainer='Peter Bittner',
maintainer_email='[email protected]',
url='https://github.com/bittner/django-apptemplates',
license='MIT',
include_package_data=True,
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
tests_require=['tox'],
zip_safe=False)