forked from xiong421/PyDmGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.02 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
# -*- coding: utf-8 -*-
"""
@Time : 2023/2/17 22:57
@Auth : 大雄
@File :setup.py
@IDE :PyCharm
@Email:[email protected]
@func:功能
"""
import setuptools
import os
CUR_DIR = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(CUR_DIR, "README.md")
with open("README.md", "r", encoding="utf-8") as fd:
long_description = fd.read()
setuptools.setup(
name="PyDmGame",
version="0.0.2",
description="Python version of dm",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://space.bilibili.com/470514128?spm_id_from=333.788.0.0",
author="da xiong",
author_email="[email protected]",
install_requires=[
"opencv-python>=4.3.0.38",
"pywin32>=305",
],
packages=['PyDmGame', "PyDmGame/modular", "PyDmGame/model", "PyDmGame/tests", "PyDmGame/model",
"PyDmGame/modular/display_", "PyDmGame/modular/keyboard_", "PyDmGame/modular/mouse_", ],
python_requires='>=3.6',
keywords='windows game dm',
)