forked from webpy/webpy
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 669 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# ...
from distutils.core import setup
from web import __version__
setup(name='web.py',
version=__version__,
description='web.py: makes web apps',
author='Aaron Swartz',
author_email='me@aaronsw.com',
maintainer='Anand Chitipothu',
maintainer_email='anandology@gmail.com',
url=' http://webpy.org/',
packages=['web', 'web.contrib'],
long_description="Think about the ideal way to write a web app. Write the code to make it happen.",
license="Public domain",
platforms=["any"],
python_requires='>=3.4.*',
install_requires=[
'cheroot>=6.0.0',
],
)