-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
52 lines (48 loc) · 1.47 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
[build-system]
requires = [
"setuptools>=61.0",
"versioneer[toml]",
'tomli; python_version < "3.11"',
]
build-backend = "setuptools.build_meta"
[project]
name = "CreateCloudMap"
dynamic = ["version"]
authors = [
{ name="Joachim Herb", email="[email protected]" },
]
description = "Downloads a cloud map for xplanet from https://clouds.matteason.co.uk/"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
'requests',
'python-dateutil'
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Desktop Environment",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
[project.scripts]
create_map = "cloudmap.create_map:main"
[project.urls]
Homepage = "https://github.com/jmozmoz/cloudmap"
Issues = "https://github.com/jmozmoz/cloudmap/issues"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "cloudmap/_version.py"
versionfile_build = "cloudmap/_version.py"
tag_prefix = ""
parentdir_prefix = "CreateCloudMap-"