-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.21 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
# setup.py
from setuptools import setup
from setuptools import setup
setup(
name='pybyrinth',
version='1.2.2',
description="A Python library for creating, solving, and visualizing mazes using Depth-First Search (DFS) and Breadth-First Search (BFS) algorithms.",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Pablo Álvaro Hidalgo',
author_email='[email protected]',
license='MIT',
py_modules=['pybyrinth'],
install_requires=[
'numpy==1.23.5',
'matplotlib==3.6.2'
],
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
keywords='maze, labyrinth, pathfinding, search, DFS, BFS',
url='https://github.com/pabblo2000/pybyrinth',
)
# Para subir la librería a PyPI, ejecuta el siguiente comando en la terminal:
# python setup.py sdist
# Luego, ejecuta el siguiente comando en la terminal:
# twine upload --repository pynacci dist/*