-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 1.7 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
"""setup.py
Upload to PyPI, Thx to: http://peterdowns.com/posts/first-time-with-pypi.html
python setup.py sdist
twine upload --repository pypitest dist/trender-x.x.x.tar.gz
twine upload --repository pypi dist/trender-x.x.x.tar.gz
"""
from distutils.core import setup
VERSION = '1.0.10'
setup(
name='trender',
packages=['trender'],
version=VERSION,
description='Template Render Engine written in pure Python',
author='Jeroen van der Heijden',
author_email='[email protected]',
url='https://github.com/cesbit/trender',
download_url='https://github.com/cesbit/'
'trender/tarball/{}'.format(VERSION),
keywords=['template', 'engine', 'render'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.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 :: Only',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML'
],
)