Mercurial > cgi-bin > hgweb.cgi > tincan
annotate setup.py @ 71:88adf10be709 draft
Add tests.
author | David Barts <n5jrn@me.com> |
---|---|
date | Mon, 15 Jul 2019 13:16:31 -0700 |
parents | a78c74c73d98 |
children | e8b3b336e63e |
rev | line source |
---|---|
65 | 1 #!/usr/bin/env python |
2 | |
3 import sys | |
4 from setuptools import setup | |
5 | |
6 if sys.version_info < (3, 4): | |
7 raise NotImplementedError("Sorry, you need at least Python 3.4 TinCan.") | |
8 | |
9 setup(name='TinCanFramework', | |
10 version='0.1.0', | |
11 description='Simple code-behind WSGI framework for small web-applications, implemented on top of bottle.', | |
12 author="David W. Barts", | |
13 author_email="tincan@bartsent.com", | |
14 url='http://bartsent.com/tincan.pspx', | |
15 py_modules=['tincan'], | |
70
a78c74c73d98
Get rid of bogus "None" messages in the standard error pages.
David Barts <n5jrn@me.com>
parents:
65
diff
changeset
|
16 scripts=['tincan.py', 'bin/install-static', 'bin/launch'], |
65 | 17 license='MIT', |
18 platforms='any', | |
19 install_requires=['bottle>=0.12.0'], | |
20 classifiers=['Development Status :: 4 - Beta', | |
21 "Operating System :: OS Independent", | |
22 'Intended Audience :: Developers', | |
23 'License :: OSI Approved :: MIT License', | |
24 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', | |
25 'Topic :: Internet :: WWW/HTTP :: HTTP Servers', | |
26 'Topic :: Internet :: WWW/HTTP :: WSGI', | |
27 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', | |
28 'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware', | |
29 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', | |
30 'Topic :: Software Development :: Libraries :: Application Frameworks', | |
31 'Programming Language :: Python :: 2.7', | |
32 'Programming Language :: Python :: 3', | |
33 'Programming Language :: Python :: 3.4', | |
34 'Programming Language :: Python :: 3.5', | |
35 'Programming Language :: Python :: 3.6', | |
36 'Programming Language :: Python :: 3.7', | |
37 ], | |
38 ) | |
39 |