-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (50 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
import pathlib
import sys
from shutil import rmtree
from setuptools import Command, find_packages, setup
__title__ = "fastapi_log"
__description__ = "A FastAPI Logger for logging every request "
__url__ = "https://github.com/12345k/fastpi-log.git"
__license__ = "MIT"
__requires__ = ["fastapi","starlette","user_agents","pydantic" ]
__keywords__ = ["fastapi","logging","custom","router"]
__version__ = "0.0.3"
__author__ = "karthick aravindan (12345k), Prasanna Kumar (VpkPrasanna)"
here = pathlib.Path(__file__).parent
print(here)
about = {}
# # Load the package's _version.py module as a dictionary.
# with open(os.path.join(here, __title__, "_version.py")) as f:
# exec(f.read(), about)
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# __version__ = about["__version__"]
setup(
name=__title__,
version=__version__,
description=__description__,
long_description=long_description,
long_description_content_type='text/markdown',
url=__url__,
author=__author__, #about["__author__"],
license=__license__,
packages=find_packages(),
keywords=__keywords__,
install_requires=__requires__,
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
],
)