1 | import ast |
---|
2 | import re |
---|
3 | |
---|
4 | import setuptools |
---|
5 | |
---|
6 | from yatl import __version__ |
---|
7 | |
---|
8 | setuptools.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 | ) |
---|