-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.05 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.05 KB
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
import setuptools
with open("README.md", "r") as README:
long_description = README.read()
setuptools.setup(
name="je_auto_control",
version="0.0.117",
author="JE-Chen",
author_email="zenmailman@gmail.com",
description="auto testing",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JE-Chen/AutoControl",
packages=setuptools.find_packages(),
install_requires=[
"je_open_cv",
"pillow",
"numpy",
"pyobjc-core;platform_system=='Darwin'",
"pyobjc;platform_system=='Darwin'",
"python3-Xlib;platform_system=='Linux'"
],
classifiers=[
"Programming Language :: Python :: 3.7",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
)
# python setup.py sdist bdist_wheel
# python -m twine upload dist/*