FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
folium/setup.py at main · python-visualization/folium · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-visualization
/
folium
Public
Notifications
You must be signed in to change notification settings
Fork
2.3k
Star
7.4k
Code
Issues
59
Pull requests
11
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
folium
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
78 lines (67 loc) · 2.21 KB
Breadcrumbs
folium
/
setup.py
Copy path
File metadata and controls
78 lines (67 loc) · 2.21 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import
os
from
setuptools
import
setup
rootpath
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
def
read
(
*
parts
):
return
open
(
os
.
path
.
join
(
rootpath
,
*
parts
)).
read
()
def
walk_subpkg
(
name
):
data_files
=
[]
package_dir
=
"folium"
for
parent
,
dirs
,
files
in
os
.
walk
(
os
.
path
.
join
(
package_dir
,
name
)):
# Remove package_dir from the path.
sub_dir
=
os
.
sep
.
join
(
parent
.
split
(
os
.
sep
)[
1
:])
for
f
in
files
:
data_files
.
append
(
os
.
path
.
join
(
sub_dir
,
f
))
return
data_files
package_data
=
{
""
: [
"*.js"
,
"plugins/*.js"
,
"plugins/*.html"
,
"plugins/*.css"
,
"plugins/*.tpl"
,
"templates/*.html"
,
"templates/*.js"
,
"templates/*.txt"
,
"py.typed"
,
]
+
walk_subpkg
(
"templates/tiles"
)
}
packages
=
[
"folium"
,
"folium.plugins"
]
# Dependencies.
with
open
(
"requirements.txt"
)
as
f
:
tests_require
=
f
.
readlines
()
install_requires
=
[
t
.
strip
()
for
t
in
tests_require
]
setup
(
name
=
"folium"
,
description
=
"Make beautiful maps with Leaflet.js & Python"
,
license
=
"MIT"
,
long_description
=
"{}"
.
format
(
read
(
"README.rst"
)),
long_description_content_type
=
"text/x-rst"
,
author
=
"Rob Story"
,
author_email
=
"wrobstory@gmail.com"
,
url
=
"https://github.com/python-visualization/folium"
,
keywords
=
"data visualization"
,
classifiers
=
[
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3.11"
,
"Programming Language :: Python :: 3.12"
,
"Programming Language :: Python :: 3.13"
,
"Topic :: Scientific/Engineering :: GIS"
,
"Topic :: Scientific/Engineering :: Visualization"
,
"License :: OSI Approved :: MIT License"
,
"Development Status :: 5 - Production/Stable"
,
],
platforms
=
"any"
,
packages
=
packages
,
package_data
=
package_data
,
python_requires
=
">=3.9"
,
extras_require
=
{
"testing"
: [
"pytest"
]},
install_requires
=
install_requires
,
zip_safe
=
False
,
use_scm_version
=
{
"write_to"
:
"folium/_version.py"
,
"write_to_template"
:
'__version__ = "{version}"'
,
"tag_regex"
:
r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$"
,
},
)
Back
|
FazBrowse Home
|
New Git URL