-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
43 lines (38 loc) · 1.56 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
# Copyright (c) 2020-2021 Vishal Anand
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
import setuptools
def get_long_desc():
with open("README.md", "r") as fh:
long_description = fh.read()
return long_description
setuptools.setup(
name="drf-api-logger",
version="1.1.16",
author="Vishal Anand",
author_email="[email protected]",
description="An API Logger for your Django Rest Framework project.",
long_description=get_long_desc(),
long_description_content_type="text/markdown",
url="https://github.com/vishalanandl177/DRF-API-Logger",
packages=setuptools.find_packages(),
install_requires=["djangorestframework>=3.7.4", "bleach>=3.1.5"],
license="Apache 2.0",
python_requires='>=3.6',
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Operating System :: OS Independent",
],
)