forked from niklasf/python-chess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 826 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 826 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import setuptools
setuptools.setup(
name="python-chess",
version="1.999",
author="Niklas Fiekas",
author_email="niklas.fiekas@backscattering.de",
description="A chess library with move generation, move validation, and support for common formats.",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
long_description_content_type="text/x-rst",
license="GPL-3.0+",
keywords="chess fen epd pgn polyglot syzygy gaviota uci xboard",
url="https://github.com/niklasf/python-chess",
packages=[],
install_requires=["chess>=1,<2"],
classifiers=[
"Development Status :: 7 - Inactive",
],
project_urls={
"Documentation": "https://python-chess.readthedocs.io",
},
)