Skip to content

Commit 52f2b15

Browse files
committed
Add files for pypi release
1 parent b351dd2 commit 52f2b15

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
QtPy>=2.4.1

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
from setuptools import setup, find_namespace_packages
2+
3+
4+
with open('README.md', 'r') as fh:
5+
readme = "\n" + fh.read()
6+
7+
setup(
8+
name='pyqt-loading-button',
9+
version='1.0.0',
10+
author='Marco Henning',
11+
license='MIT',
12+
packages=find_namespace_packages(where="src"),
13+
package_dir={"": "src"},
14+
install_requires=[
15+
'QtPy>=2.4.1'
16+
],
17+
python_requires='>=3.7',
18+
description='A QPushButton with built-in loading animations for PyQt and PySide',
19+
long_description=readme,
20+
long_description_content_type='text/markdown',
21+
url='https://github.com/marcohenning/pyqt-loading-button',
22+
keywords=['python', 'pyqt', 'qt', 'button', 'animation'],
23+
classifiers=[
24+
'Programming Language :: Python :: 3',
25+
'Operating System :: OS Independent',
26+
'License :: OSI Approved :: MIT License'
27+
]
28+
)

0 commit comments

Comments
 (0)