-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (35 loc) · 1.22 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
"""
:author: Pasquale Carmine Carbone
Setup module
"""
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
with open("requirements.txt", "r") as fin:
REQS = fin.read().splitlines()
VERSION = "__VERSION__"
setuptools.setup(
version=VERSION,
name="fastapi-router-controller",
author="Pasquale Carmine Carbone",
author_email="[email protected]",
description="A FastAPI utility to allow Controller Class usage",
long_description=LONG_DESCRIPTION,
url="https://github.com/KiraPC/fastapi-router-controller",
long_description_content_type="text/markdown",
packages=setuptools.find_packages(
exclude=["venv", "fastapi-router-controller.egg-info", "build"]
),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
],
python_requires=">=3.6",
install_requires=REQS,
extras_require={"tests": ["pytest", "pytest-cov", "requests"]},
)