forked from web2py/py4web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.64 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
"""
The future of web2py
"""
import subprocess
import re
from setuptools import setup
def get_version():
regex = re.compile("__version__\s*\=\s*['\"](?P<version>.+?)['\"]")
return regex.findall(open("py4web/__init__.py").read())[0]
setup(
name="py4web",
version=get_version(),
url="https://github.com/web2py/py4web",
license="BSD",
author="Massimo Di Pierro",
author_email="[email protected]",
maintainer="Massimo Di Pierro",
maintainer_email="[email protected]",
description="Experimental py4web (a better web2py)",
packages=["py4web", "py4web.utils", "py4web.utils.auth_plugins"],
package_data={"py4web": ["assets/*"],},
install_requires=[
"bottle>=0.12",
"click",
"colorama",
"cryptography",
"tornado",
"gevent",
"gevent-websocket",
"requests",
"threadsafevariable>=1.1",
"pyjwt>=2.0.1",
"pluralize>=0.1.6",
"yatl>=20210326.1",
"pydal>=20200910.1",
"watchgod>=0.6",
],
entry_points={"console_scripts": ["py4web=py4web.core:cli"],},
zip_safe=False,
platforms="any",
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)