forked from pysal/momepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (72 loc) · 1.85 KB
/
pyproject.toml
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
79
80
[build-system]
requires = [
"setuptools>=61.0.0",
"versioneer[toml]==0.26",
"isort",
"black"
]
build-backend = "setuptools.build_meta"
[project]
name = "momepy"
dynamic = ["version"]
authors = [
{name = "Martin Fleischmann", email = "[email protected]"},
]
maintainers = [
{name = "momepy contributors"},
]
license = {text = "BSD 3-Clause"}
description = "Urban Morphology Measuring Toolkit"
keywords = ["urban morphology", "urban morphometrics", "tessellation"]
readme = {text = """\
Momepy (*Mo*rphological *Me*asuring in *Py*thon) is a library for
quantitative analysis of urban form - urban morphometrics. It is
part of `PySAL`_ (Python Spatial Analysis Library) and is built on top
of `GeoPandas`_, other PySAL modules, and
`networkX`_.
.. _PySAL: http://pysal.org
.. _GeoPandas: http://geopandas.org
.. _networkX : http://networkx.github.io
""", content-type = "text/x-rst"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.8"
dependencies = [
"geopandas>=0.8.0",
"libpysal>=4.6.0",
"networkx>=2.3",
"packaging",
"pandas!=1.5.0",
"pygeos",
"tqdm>=4.27.0",
]
[project.urls]
Home = "http://momepy.org"
Repository = "https://github.com/pysal/momepy"
[tool.setuptools.packages.find]
include = [
"momepy",
"momepy.*",
]
[tool.setuptools.package-data]
momepy = [
"datasets/bubenec.gpkg",
"datasets/tests.gpkg",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "momepy/_version.py"
versionfile_build = "momepy/_version.py"
tag_prefix = "v"
parentdir_prefix = "momepy-"
[tool.isort]
profile = "black"
src_paths = ["momepy", "tests", "benchmarks"]
[tool.black]
line-length = 88