-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 793 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 793 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
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='xcloud',
version='0.1.0',
description='XCloud Gamestreaming library for python',
author='tuxuser',
author_email='noreply@openxbox.org',
url='https://github.com/OpenXbox/xcloud-python',
packages=find_packages(),
entry_points={
'console_scripts': [
'xcloud-pcap-reader=xcloud.scripts.pcap_reader:main',
'xcloud-client=xcloud.scripts.client:main'
]
},
install_requires=[
"ecdsa",
"ms_cv",
"pydantic",
"httpx",
"aiortc",
"construct",
"dpkt"
],
setup_requires=[
"wheel",
"pytest-runner"
],
tests_require=[
"flake8",
"pytest"
]
)