-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
45 lines (37 loc) · 1.36 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
import os
import codecs
from setuptools import setup
import progressive
def read(filename):
"""Read and return `filename` in root dir of project and return string"""
here = os.path.abspath(os.path.dirname(__file__))
return codecs.open(os.path.join(here, filename), 'r').read()
install_requires = read("requirements.txt").split()
long_description = read('README.md')
setup(
name="progressive",
version=progressive.__version__,
url='https://github.com/hfaran/progressive',
license='MIT License',
author='Hamza Faran',
description=('Terminal progress bars for Python with blessings'),
long_description=long_description,
long_description_content_type='text/markdown',
packages=['progressive'],
install_requires = install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: Console',
'Environment :: Console :: Curses',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
'Operating System :: POSIX',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
'Topic :: Terminals',
]
)