-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
109 lines (98 loc) · 2.94 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=68.1.2",
"setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["gemgis"]
[project]
name = "GemGIS"
maintainers = [
{name = "Alexander Jüstel", email = "[email protected]"},
{name = "Arthur Endlein Correia"},
{name = "Marius Pischke"},
{name = "Florian Wellmann"},
]
description = "Spatial data processing for geomodeling"
keywords = ["dataprocessing", "modeling", "geospatial", "geographic-data", "spatial-data", "rasterdata", "vectordata",
"geographic", "geomodeling"]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ['version']
requires-python = ">=3.8"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
]
# These dependencies are needed to import GemGIS successfully
# These dependencies will automatically install other packages like numpy, pandas or matplotlib
dependencies = [
'geopandas',
'rasterio',
'pyvista',
]
[project.optional-dependencies]
optionals = [
'scipy',
'pypdf',
'tqdm',
'gempy',
'pvgeo',
'xml',
'scikit-image',
'xmltodict',
'geopy',
'scikit-learn',
'py7zr',
'segysak',
'rioxarray',
'tqdm',
'mplstereonet',
'xarray',
'owslib',
'requests',
'urllib'
]
build = [
'setuptools',
'wheel',
'twine',
'build'
]
docs = [
'sphinx',
'nbsphinx',
'sphinx_markdown_tables',
'sphinx_gallery',
'sphinx_rtd_theme',
'sphinx_book_theme==0.3.3',
'sphinx_copybutton',
'sphinx_automodapi',
'sphinx_numfig',
'numpydoc'
]
tests = [
'pytest',
'pytest-cov'
]
[project.urls]
Documentation = 'https://gemgis.readthedocs.io/'
Home = 'https://gemgis.readthedocs.io/'
"Bug Tracker" = 'https://github.com/cgre-aachen/gemgis/issues'
Repository = 'https://github.com/cgre-aachen/gemgis'
"Source Code" = 'https://github.com/cgre-aachen/gemgis'
[tool.setuptools_scm]
# Make sure setuptools uses version based on the last created tag
version_scheme = "post-release"
# Make sure scm doesn't use local scheme version for push to pypi
# (so there isn't a + in the version)
local_scheme = "no-local-version"
# This _version_generated.py file is a file that you'll never want to add to version control - so you'll want to add it to your gitignore file. but when you build your package, setuptools_Scm creates it. and it contains version information that you will pull into your package below.
write_to = "gemgis/_version_generated.py"
write_to_template = '__version__ = "v{version}"'