-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
86 lines (76 loc) · 2.64 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
[build-system]
requires = ["setuptools>=68.1.2",
"setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [ "pyheatdemand" ]
[project]
name = "PyHeatDemand"
maintainers = [
{name = "Alexander Jüstel", email = "[email protected]"},
{name = "Frank Strozyk"},
{name = "Eileen Herbst"},
{name = "Elias Humm né Khashfe"},
]
description = "Processing Tool for Heat Demand Data"
keywords = ["dataprocessing", "geospatial", "geographic-data", "spatial-data", "rasterdata", "vectordata",
"geographic", ]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ['version']
requires-python = ">=3.10"
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 PyHeatDemand successfully
# These dependencies will automatically install other packages like numpy, pandas or matplotlib
dependencies = [
'geopandas',
'rasterstats',
'matplotlib',
'tqdm',
'geopy',
'osmnx',
]
[project.optional-dependencies]
optionals = []
build = [
'setuptools',
'wheel',
'twine',
'build'
]
test = [
'pytest',
'pytest-cov',
'geopandas',
'rasterstats',
'matplotlib',
'tqdm',
'geopy',
'osmnx',
'black',
]
[project.urls]
Documentation = 'https://pyhd.readthedocs.io/en/latest/index.html'
Home = 'https://pyhd.readthedocs.io/en/latest/index.html'
"Bug Tracker" = 'https://github.com/AlexanderJuestel/pyheatdemand/issues'
Repository = 'https://github.com/AlexanderJuestel/pyheatdemand'
"Source Code" = 'https://github.com/AlexanderJuestel/pyheatdemand'
[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 = "pyheatdemand/_version_generated.py"
write_to_template = '__version__ = "v{version}"'