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
56 lines (51 loc) · 1.68 KB
/
setup.py
File metadata and controls
56 lines (51 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
"""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()
GITHUB = "https://github.com/bocadilloproject/bocadillo"
DOCS = "https://bocadilloproject.github.io"
CHANGELOG = f"{GITHUB}/blob/master/CHANGELOG.md"
setuptools.setup(
name="bocadillo",
version="0.13.1",
author="Florimond Manca",
author_email="florimond.manca@gmail.com",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
packages=["bocadillo"],
package_data={"bocadillo": ["assets/*"]},
install_requires=[
"starlette>=0.11, <0.12",
"uvicorn>=0.5.1, <0.6",
"jinja2>=2.10",
"whitenoise",
"requests",
"parse",
"python-multipart",
"websockets>=6.0",
"aiodine>=1.2.5, <2.0",
],
extras_require={"files": ["aiofiles"], "sessions": ["itsdangerous"]},
python_requires=">=3.6",
url=DOCS,
project_urls={
"Source": GITHUB,
"Documentation": DOCS,
"Changelog": CHANGELOG,
},
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",
],
)