Skip to content

Commit bec330d

Browse files
Testing readme file
1 parent 0f3d34e commit bec330d

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md renamed to README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DRF API Logger
2-
![version](https://img.shields.io/badge/version-1.0.3-blue.svg)
2+
![version](https://img.shields.io/badge/version-1.0.4-blue.svg)
33
[![Downloads](https://pepy.tech/badge/drf-api-logger)](http://pepy.tech/project/drf-api-logger)
44
[![Downloads](https://pepy.tech/badge/drf-api-logger/month)](https://pepy.tech/project/drf-api-logger)
55
[![Open Source](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://opensource.org/)

setup.py

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
1+
# Copyright (c) 2020-2021 Vishal Anand
2+
#
3+
# Permission is hereby granted, free of charge, to any person obtaining a copy
4+
# of this software and associated documentation files (the "Software"), to deal
5+
# in the Software without restriction, including without limitation the rights
6+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
# copies of the Software, and to permit persons to whom the Software is
8+
# furnished to do so, subject to the following conditions:
9+
#
10+
# The above copyright notice and this permission notice shall be included in all
11+
# copies or substantial portions of the Software.
12+
113
import setuptools
214

315

416
def get_long_desc():
5-
with open("README.md", "r") as fh:
17+
with open("README.rst", "r") as fh:
618
long_description = fh.read()
719
return long_description
820

921

1022
setuptools.setup(
1123
name="drf_api_logger",
12-
version="1.0.3",
24+
version="1.0.4",
1325
author="Vishal Anand",
1426
author_email="vishalanandl177@gmail.com",
1527
description="An API Logger for your Django Rest Framework project.",
@@ -27,7 +39,6 @@ def get_long_desc():
2739
'Programming Language :: Python :: 3.7',
2840
'Programming Language :: Python :: 3.8',
2941
'Programming Language :: Python :: 3.9',
30-
"License :: OSI Approved :: MIT License",
3142
"Operating System :: OS Independent",
3243
],
3344
)

0 commit comments

Comments
 (0)