-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
45 lines (44 loc) · 1.37 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
from setuptools import setup
setup(
name='reversi',
version='0.1.1',
license='MIT License',
install_requires=[
'cython',
'pyinstaller',
],
description='A reversi library for Python',
author='y-tetsu',
url='',
packages=[
'reversi',
'reversi.BitBoardMethods',
'reversi.cy',
'reversi.strategies',
'reversi.strategies.common',
'reversi.strategies.coordinator',
'reversi.strategies.coordinator.EvaluatorMethods',
'reversi.strategies.coordinator.ScorerMethods',
'reversi.strategies.TableMethods',
'reversi.strategies.AlphaBetaMethods',
'reversi.strategies.NegaScoutMethods',
'reversi.strategies.EndGameMethods',
'reversi.strategies.BlankMethods',
'reversi.strategies.MonteCarloMethods',
'reversi.genetic_algorithm',
'reversi.examples',
'reversi.examples.extra',
'reversi.examples.extra.perl.bottomright',
'reversi.examples.extra.python.topleft',
'reversi.examples.extra.vbscript.randomcorner',
'reversi.examples.extra.sample_input',
],
package_data={
"": ["*.json", "*.pl", "*.py", "*.vbs", "*.txt", "*.pyx", "*.pyd", "*.bat", "*.ico"]
},
entry_points={
"console_scripts": [
"install_reversi_examples=reversi.examples:install",
]
},
)