-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
18 lines (17 loc) · 795 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(
name='rubiks_cube',
version='1.0.7',
description='A Rubiks Cube Package for Python',
url='https://github.com/IguanaAzul/RubiksCube.git',
author='Ramon Griffo',
author_email='[email protected]',
license='MIT License',
packages=['rubiks_cube'],
install_requires=['numpy'],
long_description='This library implements a 3x3x3 rubiks cube for general purpose in python.\n'
'It provides Rubiks Cube implemented using numpy arrays with a function to turn the cube faces, '
'as you would turn a real cube, '
'and a function to apply a scramble as a string in the official WCA format.\n'
'https://github.com/IguanaAzul/RubiksCube.git'
)