-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 947 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
# read the contents of your README file
from pathlib import Path
from LinkedListMazeSolver import __version__
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='LinkedListMazeSolver',
version=__version__,
packages=['LinkedListMazeSolver'],
package_dir={'LinkedListMazeSolver': 'LinkedListMazeSolver', 'tests': 'tests'},
url='https://github.com/badhex/LinkedListMazeSolver',
license='MIT',
author='badhex',
author_email='badhex@inflict.io',
description='This class is designed to solve a linked-list dictonary maze using the A* or Breadth-First algorithms. It takes a maze as input, represented as a dictionary where each key represents a room and the exits value is another dictionary that contains the exits of the room. ',
long_description=long_description,
long_description_content_type='text/markdown'
)