forked from bocadilloproject/bocadillo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.34 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.34 KB
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
"""Package setup."""
import setuptools
description = "A modern Python web framework filled with asynchronous salsa."
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="bocadillo",
version="0.7.0",
author="Florimond Manca",
author_email="florimond.manca@gmail.com",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
packages=["bocadillo", "bocadillo.routing", "bocadillo.scaffold"],
install_requires=[
"starlette",
"uvicorn",
"jinja2",
"whitenoise",
"requests",
"parse",
"async_generator",
],
url="https://github.com/bocadilloproject/bocadillo",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
entry_points={"console_scripts": ["boca=bocadillo.__main__:cli"]},
)