-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.14 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
from setuptools import setup
from PySender.__version__ import __version__
with open("README.md") as f:
long_description = f.read()
setup(
name='PySender',
version=__version__,
packages=['PySender', 'PySender.ui'],
include_package_data=True,
license='MIT',
author='lavender',
author_email='support@lavender.ml',
description='PyQt app to send REST API requests',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='python pyqt rest api',
url='https://github.com/fast-geek/PySender',
python_requires='>=3.6.1',
package_data={'PySender': ['res/icon.png']},
install_requires=[
'PyQt5',
'requests',
],
entry_points={
'console_scripts': [
'PySender = PySender:main'
]
},
project_urls={
"Homepage": "https://github.com/fast-geek/PySender",
"Donate": "https://lavtg.ml/donat",
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)