forked from canassa/minibar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (36 loc) · 1.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
import codecs
import os
import minibar
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the relevant file
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name="minibar",
version=minibar.__version__,
description="Simple text progress bar library",
long_description=long_description,
# The project URL.
url='https://github.com/canassa/minibar',
# Author details
author='Cesar Canassa',
author_email='[email protected]',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
# Who the project is intended for.
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
# Supported Python versions.
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
keywords='progressbar progress bar',
packages=['minibar'],
)