-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 970 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 970 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
29
30
31
32
33
#!/usr/bin/env python
# encoding: utf8
"""
Installer of progressbar-simple
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='progressbar-simple',
version='0.1',
description='Another simple progress bar',
classifiers = [ 'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities' ],
keywords='terminal process bar',
url='https://github.com/vgeck/progressBar',
author='Vinzenz Eck',
author_email='vinzenz@xal.no',
license='GNU3',
long_description=readme(),
install_requires = ['future'],
packages=['progressbarsimple'],
tests_require=["pytest-runner", "pytest-pylint"],
zip_safe=False)