-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (30 loc) · 1.15 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
from distutils.core import setup
from importlib import import_module
def get_long_description():
readme = open("README.rst").read()
changelog = open("CHANGES.rst").read()
return "\n\n".join([readme, changelog.replace(":func:", "").replace(":ref:", "")])
setup(
name='cli_progressbar',
packages=['cli_progressbar'],
version=import_module('cli_progressbar').__version__,
license='MIT',
description='lightweight library to print progress bar in cli',
long_description=get_long_description(),
author='Ali Madihi (mrunderline)',
author_email='[email protected]',
url='https://github.com/mrunderline/cli-progressbar',
keywords=['cli', 'progressbar', 'console'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities'
],
)