forked from afozk95/pgn-to-gif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 993 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
38
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="pgn_to_gif",
version="0.0.3",
description="Generate GIFs of chess games from PGN files.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/afozk95/pgn-to-gif",
author="Ahmed Furkan Özkalay",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
packages=["pgn_to_gif"],
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"cairosvg",
"imageio",
"python-chess",
],
entry_points={
"console_scripts": [
"pgn2gif=pgn_to_gif.cli:main",
"pgn-to-gif=pgn_to_gif.cli:main",
]
},
keywords=["chess", "gif", "pgn"],
)