Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 2.1 KB

You have to be logged in to leave a comment. Sign In
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
  1. [build-system]
  2. requires = [
  3. "setuptools>=61.0.0",
  4. ]
  5. build-backend = "setuptools.build_meta"
  6. [project]
  7. name = "geopandas"
  8. dynamic = ["version"]
  9. authors = [
  10. {name = "Kelsey Jordahl", email = "kjordahl@alum.mit.edu"},
  11. ]
  12. maintainers = [
  13. {name = "GeoPandas contributors"},
  14. ]
  15. license = {text = "BSD 3-Clause"}
  16. description = "Geographic pandas extensions"
  17. keywords = ["GIS", "cartography", "pandas", "shapely"]
  18. readme = {text = """\
  19. GeoPandas is a project to add support for geographic data to
  20. `pandas`_ objects.
  21. The goal of GeoPandas is to make working with geospatial data in
  22. python easier. It combines the capabilities of `pandas`_ and `shapely`_,
  23. providing geospatial operations in pandas and a high-level interface
  24. to multiple geometries to shapely. GeoPandas enables you to easily do
  25. operations in python that would otherwise require a spatial database
  26. such as PostGIS.
  27. .. _pandas: https://pandas.pydata.org
  28. .. _shapely: https://shapely.readthedocs.io/en/latest/
  29. """, content-type = "text/x-rst"}
  30. classifiers = [
  31. "Development Status :: 5 - Production/Stable",
  32. "Intended Audience :: Science/Research",
  33. "License :: OSI Approved :: BSD License",
  34. "Operating System :: OS Independent",
  35. "Programming Language :: Python :: 3",
  36. "Programming Language :: Python :: 3 :: Only",
  37. "Topic :: Scientific/Engineering :: GIS",
  38. ]
  39. requires-python = ">=3.8"
  40. dependencies = [
  41. "fiona >= 1.8",
  42. "packaging",
  43. "pandas >= 1.0.0",
  44. "pyproj >= 2.6.1.post1",
  45. "shapely >= 1.7",
  46. ]
  47. [project.urls]
  48. Home = "https://geopandas.org"
  49. Repository = "https://github.com/geopandas/geopandas"
  50. [tool.setuptools.packages.find]
  51. include = [
  52. "geopandas",
  53. "geopandas.*",
  54. ]
  55. [tool.setuptools.package-data]
  56. geopandas = [
  57. "datasets/nybb_16a.zip",
  58. "datasets/naturalearth_cities/*",
  59. "datasets/naturalearth_lowres/*",
  60. "tests/data/*",
  61. ]
  62. [tool.pytest.ini_options]
  63. markers = [
  64. "web: tests that need network connectivity"
  65. ]
  66. xfail_strict = true
  67. filterwarnings = [
  68. "ignore:distutils Version classes are deprecated.*:DeprecationWarning:pandas.*",
  69. "ignore:distutils Version classes are deprecated.*:DeprecationWarning:numpy.*"
  70. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...