-
Notifications
You must be signed in to change notification settings - Fork 126
/
setup.py
40 lines (37 loc) · 1.22 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
import os
import io
from setuptools import setup
long_description = io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8').read()
setup(
name='kociemba',
version='1.2.1',
description='Python/C implementation of Herbert Kociemba\'s Two-Phase algorithm for solving Rubik\'s Cube',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='kociemba rubik cube solver twophase',
url='https://github.com/muodov/kociemba',
author='muodov',
author_email='[email protected]',
license='GPLv2',
packages=['kociemba'],
package_data={
'': [
'cprunetables/*',
'pykociemba/*.py',
'pykociemba/prunetables/*',
'ckociemba/include/*.h',
'ckociemba/*.c'],
},
classifiers=(
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
),
entry_points = {
'console_scripts': ['kociemba=kociemba.command_line:main'],
},
setup_requires=['pytest-runner', "cffi>=1.0.0"],
tests_require=['pytest', ],
zip_safe=False,
cffi_modules=["kociemba/build_ckociemba.py:ffi"],
install_requires=["cffi>=1.0.0", 'future'],
)