FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-pathfinding/setup.py at main · brean/python-pathfinding · GitHub
brean
/
python-pathfinding
Public
Notifications
You must be signed in to change notification settings
Fork
73
Star
383
Code
Issues
24
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-pathfinding
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (18 loc) · 598 Bytes
Breadcrumbs
python-pathfinding
/
setup.py
Copy path
File metadata and controls
21 lines (18 loc) · 598 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from
setuptools
import
find_packages
,
setup
with
open
(
"README.md"
,
"r"
,
encoding
=
'utf-8'
)
as
fh
:
long_description
=
fh
.
read
()
setup
(
name
=
"pathfinding"
,
description
=
"Path finding algorithms (based on Pathfinding.JS)"
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
url
=
"https://github.com/brean/python-pathfinding"
,
version
=
"1.0.22"
,
license
=
"MIT"
,
author
=
"Andreas Bresser"
,
packages
=
find_packages
(),
tests_require
=
[
"numpy"
,
"pandas"
],
include_package_data
=
True
,
install_requires
=
[],
)
Back
|
FazBrowse Home
|
New Git URL