-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 899 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='ps4debug',
version='0.1.7',
author='Jay',
author_email='0jaybae0@gmail.com',
description='Asynchronous ps4debug implementation in python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Jay184/PyPS4debug',
project_urls={
'Bug Tracker': 'https://github.com/Jay184/PyPS4debug/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
py_modules=['ps4debug'],
include_package_data=True,
entry_points='''
''',
install_requires=[
'construct',
],
python_requires='>=3.10'
)