mirror of
https://github.com/verigak/progress.git
synced 2025-12-08 19:33:24 +00:00
Initial commit
This commit is contained in:
26
setup.py
Executable file
26
setup.py
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
import progress
|
||||
|
||||
|
||||
setup(
|
||||
name='progress',
|
||||
version=progress.__version__,
|
||||
description='Easy to use progress bars',
|
||||
long_description=open('README.rst').read(),
|
||||
author='Giorgos Verigakis',
|
||||
author_email='verigak@gmail.com',
|
||||
url='http://github.com/verigak/progress/',
|
||||
license='ISC',
|
||||
packages=['progress'],
|
||||
classifiers=[
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: ISC License (ISCL)',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.3'
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user