-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 964 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
35
36
37
"""Setup file."""
import os
from setuptools import find_packages, setup
_VERSION = '1.3.1'
def get_long_description():
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
return f.read()
setup(
name='kitty-escape',
version=_VERSION,
description='kitty escape game',
long_description=get_long_description(),
long_description_content_type='text/markdown',
url='https://github.com/rchen152/escape',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.10',
entry_points={
'console_scripts': ['kitty-escape = escape.main:main'],
},
install_requires=[
'kitty-common>=0.5.5',
'pygame>=2.1.2',
],
)