This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
73 lines (64 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
##############################################################################
#
# Copyright Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
from setuptools import setup
name = 'bobo'
version = '3.0.dev0'
entry_points = """
[console_scripts]
bobo = boboserver:server
[paste.app_factory]
main = bobo:Application
[paste.filter_app_factory]
reload = boboserver:Reload
debug = boboserver:Debug
"""
def read(fname):
with open(fname) as f:
return f.read()
setup(
name=name,
version=version,
author="Jim Fulton",
author_email="[email protected]",
description="Web application framework for the impatient",
license="ZPL 2.1",
keywords=["WSGI", "microframework"],
url='http://bobo.readthedocs.io',
long_description=read('README.rst') + '\n\n' + read('CHANGES.rst'),
py_modules=['bobo', 'boboserver'],
package_dir={'': 'src'},
python_requires='>=3.7',
install_requires=["WebOb"],
extras_require={
'docs': ["Sphinx"],
},
entry_points=entry_points,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Zope Public License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
],
zip_safe=False,
)