-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 969 Bytes
/
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
"""Script to setup pretty_logging package."""
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pretty_logging",
description="Package to make logging prettier.",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.2.0",
url="https://github.com/zurk/pretty_logging",
download_url="https://github.com/zurk/pretty_logging",
packages=["pretty_logging"],
install_requires=[
"tqdm",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
include_package_data=True,
)