-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 882 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
34
#!/usr/bin/env python3
from setuptools import setup, find_packages
readme = """
SightTraining is a game for children's amblyopia training
"""
setup(
name="SightTraining",
version="0.1.24",
author="jett.wang",
author_email="jamiesun.net@gmail.com",
description="SightTraining is a game for children's amblyopia training",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"pygame==2.5.1",
"python-dotenv>=1.0.1"
],
python_requires='>=3.10',
entry_points={
"console_scripts": [
"spacex01 = spacedefense:runapp"
]
},
)