-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·61 lines (59 loc) · 2.34 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-cheetahtemplate',
version='0.4.0',
description='Use CheetahTemplate3 in Django',
long_description=open('README.rst', 'r').read(),
long_description_content_type="text/x-rst",
author='Oleg Broytman',
author_email='phd@phdru.name',
url='https://github.com/CheetahTemplate3/django-cheetahtemplate',
project_urls={
'Download': 'https://pypi.org/pypi/django-cheetahtemplate',
'Github repo':
'https://github.com/CheetahTemplate3/django-cheetahtemplate',
'Issue tracker':
'https://github.com/CheetahTemplate3'
'/django-cheetahtemplate/issues',
},
license='MIT',
platforms='Any',
keywords=["cheetah", "django", "template"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Topic :: Text Processing',
],
packages=['django_cheetahtemplate'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
requires=['Django', 'CT3'],
install_requires=[
"Django >1.11, <2; python_version=='2.7'",
"Django >=2, <2.1; python_version=='3.4'",
"Django >=2.2.25; python_version>='3.5'",
"CT3 >=3.3",
],
)