forked from tomwojcik/starlette-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 1.11 KB
/
setup.py
File metadata and controls
39 lines (33 loc) · 1.11 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
from distutils.core import setup
import setuptools
VERSION = "0.2.1"
def get_long_description():
with open("README.md", "r", encoding="utf8") as f:
return f.read()
setup(
name="starlette_context",
python_requires=">=3.7",
version=VERSION,
license="MIT",
description="Access context in Starlette",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(
include=("starlette_context", "starlette_context.*")
),
platforms="any",
author="Tomasz Wojcik",
url="https://github.com/tomwojcik/starlette-context",
download_url="https://github.com/tomwojcik/starlette-context/"
f"archive/{VERSION}.tar.gz",
keywords=["starlette", "fastapi"],
install_requires="starlette",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)