-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (24 loc) · 898 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license_ = f.read()
setup(
name="sliding_puzzle",
version="0.0.1dev",
description="Sliding block/tile puzzle solver using multiple algorithms",
long_description=readme,
long_description_content_type="text/markdown",
author="PARDINI Raphael, MIMOUN Avi",
author_email="4v1m+github@protonmail.ch",
url="https://github.com/av1m/sliding-block-puzzles",
project_urls={
"Bug Tracker": "https://github.com/av1m/sliding-block-puzzles/issues",
"Project Management": "https://github.com/av1m/sliding-block-puzzles/projects",
},
license=license_,
packages=find_packages(),
entry_points={"console_scripts": ["sliding_puzzle=sliding_puzzle.__main__:main"]},
python_requires=">=3.9",
)