-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 899 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 899 Bytes
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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
with open("VERSION", "r") as version_f:
version = version_f.read()
setuptools.setup(
name="FastAPIwee",
version=version,
author="German Gensetskyi",
author_email="Ignis2497@gmail.com",
description="FastAPIwee - FastAPI + PeeWee = <3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Ignisor/FastAPIwee",
project_urls={
'Documentation': 'https://fastapiwee.qqmber.wtf',
},
packages=setuptools.find_packages(exclude=('tests', )),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'fastapi==0.66.0',
'pydantic==1.8.2',
'peewee==3.14.4',
],
)