-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.42 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
from setuptools import setup
setup(
name="dotsinspace_debugger",
version="1.0.6",
description="Debugger for colorful logging.",
long_description="README.md",
author="dotsinspace",
author_email="[email protected]",
maintainer="dotsinspace",
maintainer_email="[email protected]",
license="MIT License",
classifiers=[
"Development Status :: 5 - Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.8",
keywords=["utility", "debugger"],
install_requires=["ujson", "aiofiles", "sentry_sdk", "colorama"],
extras_require={},
url="https://github.com/dotsinspace/Debugger",
project_urls={
"Homepage": "https://github.com/dotsinspace/Debugger",
"Bug Reports": "https://github.com/dotsinspace/Debugger/issues",
"Funding": "https://donate.pypi.org",
"Say Thanks!": "http://saythanks.io/dotsinspace",
"Source": "https://github.com/dotsinspace/Debugger",
}
)