-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.16 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
import sys
from setuptools import setup
if sys.version_info[0] < 3:
sys.exit('Error: Python 3.x is required.')
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='pyqtlineeditprogressbar',
version='0.3.5',
description='A custom PyQt widget that places a configurable progress bar in the background of a QLineEdit widget.',
url='http://github.com/eruber/pyqtlineeditprogressbar',
download_url="https://github.com/eruber/PyQtLineEditProgressBar/archive/v0.3.0.tar.gz",
author='E.R. Uber',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
packages=['pyqtlineeditprogressbar'],
install_requires=[
'PyQt5>=5.14.0',
'colour>=0.1.5',
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)