-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1 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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="ssm-python",
version="0.1.2",
author="JHLeeeMe",
author_email="[email protected]",
description="Simple Screen Mirror",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
python_requires='>=3.7, <3.10',
install_requires=['opencv-python', 'Pillow', 'python-xlib'],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
],
keywords=[
'python', 'socket',
'screen', 'mirroring', 'sharing',
'screen mirroring', 'screen sharing'
],
project_urls={
"Source": "https://github.com/JHLeeeMe/ssm"
}
)