forked from justpy-org/justpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.17 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
import setuptools
def get_long_description():
with open("README.md", encoding="utf8") as f:
return f.read()
setuptools.setup(
name="justpy",
python_requires=">=3.6",
version="0.0.7",
license="Apache",
author="Eliezer Mintz",
author_email="[email protected]",
description="An object oriented high-level Python Web Framework that requires no front-end programming",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/elimintz/justpy",
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'starlette>=0.12.0', 'uvicorn>=0.7.1', 'itsdangerous>=1.1.0',
'addict>=2.2.1', 'jinja2>=2.10.1', 'demjson>=2.2.4', 'httpx>=0.11.0', 'aiofiles'
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
)