source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/packages/yatl/setup.py

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 1.7 KB
Line 
1import ast
2import re
3
4import setuptools
5
6from yatl import __version__
7
8setuptools.setup(
9    name = "yatl",
10    version = __version__,
11    url = 'https://github.com/web2py/yatl',
12    license = 'BSD',
13    author = 'Massimo Di Pierro',
14    author_email = 'massimo.dipierro@gmail.com',
15    maintainer = 'Massimo Di Pierro',
16    maintainer_email = 'massimo.dipierro@gmail.com',
17    description = 'Yet Another Template Language',
18    long_description = "This is a spin-off of the web2py template language, framework agnostic, documented in the web2py book. Includes helpers and sanitizer.",
19    long_description_content_type = "text/markdown",
20    packages = ['yatl'],
21    include_package_data = True,
22    zip_safe = False,
23    platforms = 'any',
24    classifiers = [
25        'Development Status :: 5 - Production/Stable',
26        'Environment :: Web Environment',
27        'Intended Audience :: Developers',
28        'License :: OSI Approved :: BSD License',
29        'Operating System :: OS Independent',
30        'Programming Language :: Python',
31        'Programming Language :: Python :: 2',
32        'Programming Language :: Python :: 2.7',
33        'Programming Language :: Python :: 3',
34        'Programming Language :: Python :: 3.4',
35        'Programming Language :: Python :: 3.5',
36        'Programming Language :: Python :: 3.6',
37        'Programming Language :: Python :: 3.7',
38        'Programming Language :: Python :: Implementation :: CPython',
39        'Programming Language :: Python :: Implementation :: PyPy',
40        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
41        'Topic :: Software Development :: Libraries :: Python Modules',
42        'Topic :: Text Processing :: Markup :: HTML'
43    ],
44)
Note: See TracBrowser for help on using the repository browser.