-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.79 KB
/
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
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
import glob
from setuptools import setup, find_packages
setup(
name='chess_classification',
version='0.0.5',
url='https://github.com/akuroiwa/chess-classification',
# # PyPI url
# download_url='',
license='GNU/GPLv3+',
author='Akihiro Kuroiwa',
author_email='akuroiwa@env-reform.com',
description='Deep learning in FEN’s win / loss evaluation.',
# long_description="\n%s" % open('README.md').read(),
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
zip_safe=False,
# python_requires=">=3.8",
python_requires=">=3.7",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3 :: Only',
# 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Games/Entertainment :: Board Games',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms='any',
keywords=['classification', 'stockfish', 'transformer', 'bert', 'chess', 'fen', 'pgn'],
packages=find_packages(),
include_package_data=True,
install_requires=['chess', 'simpletransformers', 'pandas'],
entry_points={
'console_scripts': [
'genPgn = chess_classification.genPgn:console_script',
'importPgn = chess_classification.importPgn:console_script'
]},
)