-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.28 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
import os
from setuptools import find_packages, setup
current_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_directory, "README.md"), "r") as readme:
package_description = readme.read()
version_string = ""
with open(os.path.join(current_directory, ".version"), "r") as version_file:
version_string = version_file.read()
setup(
name="mkfst",
version=version_string,
description="MKFST (Make Fast) is a high-performance, async, non-ASGI, Python HTTP webserver framework.",
long_description=package_description,
long_description_content_type="text/markdown",
author="Ada Lundhe",
author_email="[email protected]",
url="https://github.com/hyper-light/mkfst-py",
packages=find_packages(),
keywords=[
"pypi",
"cicd",
"python",
"performance",
],
classifiers=[
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"psutil",
"uvloop",
"pydantic",
"zstandard",
"cryptography",
"python-dotenv",
"orjson",
"msgspec",
],
python_requires=">=3.11",
)