forked from muhammad-fiaz/logly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (43 loc) · 1.6 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
from setuptools import setup, find_packages
VERSION = "0.0.6"
DESCRIPTION = 'Logly: Ready to Go Python logging utility with color-coded messages, file-based logging, and many more customizable options. Simplify logging in your Python applications with Logly.'
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name="logly",
version=VERSION,
author="Muhammad Fiaz",
author_email="contact@muhammmadfiaz.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url='https://github.com/muhammad-fiaz/logly.git',
packages=find_packages(),
keywords=[
'log', 'logging', 'logly', 'python'
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
python_requires='>=3.8',
install_requires=[
'pytest==8.3.3',
'packaging==24.2',
'colorama>=0.4.4',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
license='MIT License',
project_urls={
'Source Code': 'https://github.com/muhammad-fiaz/logly.git',
'Bug Tracker': 'https://github.com/muhammad-fiaz/logly/issues',
'Documentation': 'https://github.com/muhammad-fiaz/logly#readme',
},
)
print("Happy Coding!")