- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
22 lines (19 loc) · 687 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
fromsetuptoolsimportsetup, find_packages
withopen("requirements.txt", "r") asfile:
requirements= [line.strip() forlineinfile.readlines()]
withopen("README.md", "r") asfile:
readme=file.read().replace("[ ]", "❌").replace("[x]", "✅")
setup(
name="fastapi-framework",
packages=find_packages(),
version="1.0.0",
description="A Fastapi Framework",
long_description=readme,
long_description_content_type="text/markdown",
author="Tert0",
license="MIT",
install_requires=requirements,
extra_requires=["mkdocs-material", "black", "coverage"],
url="https://github.com/Tert0/fastapi-framework",
python_requires=">=3.6",
)