-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
29 lines (25 loc) · 842 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
#!/usr/bin/env python
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().strip().splitlines()
source_directory = dirname(abspath(__file__))
setup(
name='checkio_client',
version='0.3.4',
python_requires='>=3.8',
description='Command line interface for playing CheckiO games',
author='CheckiO',
author_email='[email protected]',
url='https://github.com/CheckiO/checkio-client',
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': ['checkio = checkio_client.runner:main'],
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)