FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-overpy/setup.py at master · DinoTools/python-overpy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DinoTools
/
python-overpy
Public
Notifications
You must be signed in to change notification settings
Fork
56
Star
265
Code
Issues
20
Pull requests
9
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-overpy
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
25 lines (21 loc) · 635 Bytes
Breadcrumbs
python-overpy
/
setup.py
Copy path
File metadata and controls
executable file
·
25 lines (21 loc) · 635 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
22
23
24
25
#!/usr/bin/env python
from
pathlib
import
Path
from
setuptools
import
setup
,
find_packages
HERE
=
Path
(
__file__
).
resolve
().
parent
about
=
{}
exec
((
HERE
/
"overpy"
/
"__about__.py"
).
read_text
(),
about
)
setup
(
name
=
about
[
"__title__"
],
version
=
about
[
"__version__"
],
description
=
about
[
"__summary__"
],
license
=
about
[
"__license__"
],
url
=
about
[
"__uri__"
],
author
=
about
[
"__author__"
],
keywords
=
"OverPy Overpass OSM OpenStreetMap"
,
install_requires
=
[],
packages
=
find_packages
(
exclude
=
[
"*.tests"
,
"*.tests.*"
,
"tests"
]),
package_data
=
{
# "": ["README"],
},
tests_require
=
[
"pytest"
],
)
Back
|
FazBrowse Home
|
New Git URL