-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (39 loc) · 1.17 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "linref"
version = "0.1.1"
description = "Linearly referenced data management, manipulation, and operations"
requires-python = ">=3.8"
license = {file = "LICENSE.rst"}
keywords=["python", "geospatial", "linear", "data", "event", "dissolve", "overlay", "range", "numeric", "interval"]
authors = [
{name = "Tariq Shihadah", email = "tariq.shihadah@gmail.com"}
]
dependencies = [
"numpy",
"matplotlib",
"shapely>=1.7",
"pandas>=1.1",
"geopandas>=0.10.2",
"rangel>=0.0.7",
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dynamic = ["readme"]
[project.urls]
documentation = "https://linref.readthedocs.io/"
repository = "https://github.com/tariqshihadah/linref"
[tool.setuptools.packages.find]
include = ["linref*"]
exclude = ["linref.tests*"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}