-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.09 KB
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0.0", "wheel"]
[project]
name = "flickrhistory"
description = "Download a complete history of georeferenced flickr posts"
readme = "README.md"
authors = [
{ name = "Christoph Fink" },
{ name = "Tatu Leppämäki" },
]
dependencies = [
"blessed",
"GeoAlchemy2",
"PyYaml",
"psycopg2",
"requests",
"SQLAlchemy",
"urllib3",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
keywords = ["social media", "API", "flickr", "image", "photo", "download"]
license = { text = "GPL-3.0-or-later" }
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/DigitalGeographyLab/flickrhistory/"
"Change Log" = "https://github.com/DigitalGeographyLab/flickrhistory/blob/main/CHANGELOG.md"
"Bug tracker" = "https://github.com/DigitalGeographyLab/flickrhistory/issues"
[tool.setuptools.dynamic]
version = {attr = "flickrhistory.__version__"}