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+
113import setuptools
214
315
416def 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
1022setuptools .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