Skip to content

Commit

Permalink
update setuptools.py
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-fiaz committed Dec 16, 2023
1 parent 4262d4b commit 1bdfe98
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
from setuptools import setup, find_packages

from logly.version import get_Version

VERSION = "0.0.2"

get_Version(VERSION)

DESCRIPTION = ('Logly: Python logging utility with color-coded messages and file support. Easily log and trace '
'messages with customizable colors. Simple integration for effective debugging and monitoring.')
DESCRIPTION = 'Logly: Python logging utility with color-coded messages and file support. Easily log and trace messages with customizable colors. Simple integration for effective debugging and monitoring.'

with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
Expand Down Expand Up @@ -36,10 +31,9 @@
],
python_requires='>=3.8',
install_requires=[
'setuptools==69.0.2',
'pytest==7.4.3',
'packaging==23.2',
'colorama>=0.4.4'
'colorama>=0.4.4',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
Expand Down

0 comments on commit 1bdfe98

Please sign in to comment.