Skip to content

Commit 23ae2b7

Browse files
committed
Add PyPI files
1 parent ca4540c commit 23ae2b7

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-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: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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='pyqttooltip',
9+
version='1.0.0',
10+
author='Niklas Henning',
11+
author_email='business@niklashenning.com',
12+
license='MIT',
13+
packages=find_namespace_packages(where='src'),
14+
package_dir={'': 'src'},
15+
install_requires=[
16+
'QtPy>=2.4.1'
17+
],
18+
python_requires='>=3.7',
19+
description='A modern and fully customizable tooltip library for PyQt and PySide',
20+
long_description=readme,
21+
long_description_content_type='text/markdown',
22+
url='https://github.com/niklashenning/pyqttooltip',
23+
keywords=['python', 'pyqt', 'qt', 'tooltip', 'modern'],
24+
classifiers=[
25+
'Programming Language :: Python :: 3',
26+
'Operating System :: OS Independent',
27+
'License :: OSI Approved :: MIT License'
28+
]
29+
)

0 commit comments

Comments
 (0)