-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.13 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 ~= 61.0", "setuptools-scm[toml] ~= 7.1", "wheel ~= 0.40"]
build-backend = "setuptools.build_meta"
[project]
name = "OGRe"
dynamic = ["version"]
description = "OpenFusion GeoJSON Retriever"
keywords = ["OpenFusion", "Twitter", "GeoJSON", "geotag"]
readme = "README.rst"
license = {file = "LICENSE"}
maintainers = [
{name = "David Tucker", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">= 3.8"
dependencies = [
"twython >= 3.4",
]
[project.entry-points.console_scripts]
ogre = "ogre.cli:main"
[project.urls]
homepage = "https://github.com/openfusion-dev/ogre"
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.setuptools_scm]