-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (22 loc) · 768 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (22 loc) · 768 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='pacmanprogressbar',
version='1.0',
py_modules=['pacmanprogressbar'],
author='Jesús Roldán',
author_email='jesus.roldan@gmail.com',
url='https://github.com/xeBuz/pacman-progressbar',
license='MIT',
description='ProgreessBar for Python, based on Arch progressbar, with "ILoveCandy" option enabled',
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python",
"Topic :: Utilities",
],
)