-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 690 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import sys
if sys.version_info < (3, 6):
raise ImportError('Python 3.6 or greater is required')
readme = open('README.md', encoding='utf-8').read()
setup(
name = 'ataxx',
version = '2.2.0',
license = 'MIT',
description = 'python-ataxx is written in Python 3 and supports basic features such as move generation, move validation, engine communication, and board printing.',
long_description_content_type='text/markdown',
long_description = readme,
url = 'https://github.com/kz04px/python-ataxx',
keywords = 'ataxx',
packages = ['ataxx'],
test_suite = 'test',
extras_require = {
'draw': 'Pillow'
},
)