SetupConfig.py (cheetah3-3.2.4) | : | SetupConfig.py (cheetah3-3.2.5) | ||
---|---|---|---|---|
skipping to change at line 43 | skipping to change at line 43 | |||
keywords = ["template"] | keywords = ["template"] | |||
platforms = "Any" | platforms = "Any" | |||
packages = ['Cheetah', | packages = ['Cheetah', | |||
'Cheetah.Macros', | 'Cheetah.Macros', | |||
'Cheetah.Templates', | 'Cheetah.Templates', | |||
'Cheetah.Tests', | 'Cheetah.Tests', | |||
'Cheetah.Tools', | 'Cheetah.Tools', | |||
'Cheetah.Utils', | 'Cheetah.Utils', | |||
] | ] | |||
classifiers = [line.strip() for line in '''\ | classifiers = [line.strip() for line in '''\ | |||
Development Status :: 5 - Production/Stable | Development Status :: 4 - Beta | |||
Intended Audience :: Developers | Intended Audience :: Developers | |||
Intended Audience :: System Administrators | Intended Audience :: System Administrators | |||
License :: OSI Approved :: MIT License | License :: OSI Approved :: MIT License | |||
Operating System :: OS Independent | Operating System :: OS Independent | |||
Programming Language :: Python :: Implementation :: CPython | Programming Language :: Python :: Implementation :: CPython | |||
Programming Language :: Python :: Implementation :: PyPy | Programming Language :: Python :: Implementation :: PyPy | |||
Programming Language :: Python | Programming Language :: Python | |||
Programming Language :: Python :: 2 | Programming Language :: Python :: 2 | |||
Programming Language :: Python :: 2.7 | Programming Language :: Python :: 2.7 | |||
Programming Language :: Python :: 3 | Programming Language :: Python :: 3 | |||
Programming Language :: Python :: 3.4 | Programming Language :: Python :: 3.4 | |||
Programming Language :: Python :: 3.5 | Programming Language :: Python :: 3.5 | |||
Programming Language :: Python :: 3.6 | Programming Language :: Python :: 3.6 | |||
Programming Language :: Python :: 3.7 | Programming Language :: Python :: 3.7 | |||
Programming Language :: Python :: 3.8 | ||||
Topic :: Internet :: WWW/HTTP | Topic :: Internet :: WWW/HTTP | |||
Topic :: Internet :: WWW/HTTP :: Dynamic Content | Topic :: Internet :: WWW/HTTP :: Dynamic Content | |||
Topic :: Internet :: WWW/HTTP :: Site Management | Topic :: Internet :: WWW/HTTP :: Site Management | |||
Topic :: Software Development :: Code Generators | Topic :: Software Development :: Code Generators | |||
Topic :: Software Development :: Libraries :: Python Modules | Topic :: Software Development :: Libraries :: Python Modules | |||
Topic :: Software Development :: User Interfaces | Topic :: Software Development :: User Interfaces | |||
Topic :: Text Processing'''.splitlines() if not line.strip().startswith('#')] | Topic :: Text Processing'''.splitlines() if not line.strip().startswith('#')] | |||
if PY2: | if PY2: | |||
del line | del line | |||
skipping to change at line 133 | skipping to change at line 134 | |||
Recent Changes | Recent Changes | |||
================================================================================ | ================================================================================ | |||
See https://cheetahtemplate.org/news.html for full details | See https://cheetahtemplate.org/news.html for full details | |||
''' | ''' | |||
long_description_content_type = "text/x-rst" | long_description_content_type = "text/x-rst" | |||
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' | python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' | |||
extras_require = { | ||||
'filters': ['markdown'], | ||||
'markdown': ['markdown'], | ||||
} | ||||
End of changes. 3 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added |