generated from python-discord/code-jam-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (44 loc) · 1.53 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
35
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="maze_gitb", # temp name
version="1.0.2",
license="MIT",
description="A maze game that required users to think inside the box to win",
long_description=long_description,
long_description_content_type="text/markdown",
author="Benevolent Bonobos",
author_email="[email protected]",
url="https://github.com/Anand1310/summer-code-jam-2021",
project_urls={
"Bug Tracker": "https://github.com/Anand1310/summer-code-jam-2021/issues",
},
download_url="https://github.com/Anand1310/summer-code-jam-2021/archive/v1.0.2.tar.gz",
keywords=["game", "maze", "box", "think inside the box", "sound", "3d-sound"],
install_requires=[
'blessed',
'numpy',
'PyOpenAL',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Puzzle Games",
],
entry_points={
'console_scripts': [
'maze_gitb = maze_gitb.main:main'
]
},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
python_requires=">=3.8.6",
)