-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (40 loc) · 1.37 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
46
47
48
49
from setuptools import find_packages, setup
from QtPyNetwork import __version__
with open("README.rst", "r", encoding="utf-8") as f:
doc = f.read()
setup(
name='QtPyNetwork',
version=__version__,
packages=find_packages(),
url='',
license='MIT',
author='Wojciech Wentland',
author_email='[email protected]',
description='Abstraction layer for Python Qt networks.',
long_description=doc,
long_description_content_type='text/x-rst',
python_requires='>=3.6',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['server',
'client',
'pyqt5',
'pyside2',
'qtpy',
'tcp'],
project_urls={
"Issues": "https://github.com/desty2k/QtPyNetwork/issues",
"Docs": "https://desty2k.github.io/QtPyNetwork/",
}
)