forked from robertbasic/pugdebug
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 848 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 848 Bytes
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='pugdebug',
version='1.1.1',
description='A standalone debugging client for PHP applications',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Mte90/pugdebug',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Debuggers',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.7',
install_requires=['sip', 'PyQt5']
)