-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 948 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 948 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="tinyprogress",
version="1.2.0",
author="Croketillo",
author_email="croketillo@gmail.com",
description="A lightweight progress bar for Python without dependencies.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/croketillo/tinyprogress",
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
python_requires='>=3.6',
install_requires=[
'colorama>=0.4.4',
],
)