-
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 562 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 562 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
name='cl-chess',
packages=['src'],
version='1.2.7',
description='A program to play chess on the command line',
author='Marcus Buffett',
author_email='marcusbuffett@me.com',
url='https://github.com/marcusbuffett/command-line-chess',
# download_url='https://github.com/peterldowns/mypackage/tarball/0.1',
entry_points={'console_scripts': ['chess = src.main:main']},
install_requires=['colored'],
keywords=['chess', 'game'],
classifiers=['Programming Language :: Python :: 3'],
)