-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.08 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
# type: ignore
"""Package deployment script."""
import setuptools
with open('README.md', encoding='utf-8') as readme:
long_description = readme.read()
setuptools.setup(
name='qgis-stubs',
version='0.2.0post1',
url='https://github.com/leonhard-s/qgis-stubs',
author='Leonhard S.',
maintainer_email='[email protected]',
description='PEP561 type stubs for PyQGIS',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>= 3.6',
package_data={
'qgis-stubs': ['*.pyi'],
'qgis-stubs.core': ['*.pyi'],
'qgis-stubs.processing': ['*.pyi'],
},
packages=[
'qgis-stubs',
'qgis-stubs.core',
'qgis-stubs.processing',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development'
],
install_requires=[
'PyQt5-stubs >= 5.14',
],
)