-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.52 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
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = [
"datagovsg",
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
name = "datagovsg"
dynamic = [
"dependencies",
"version",
]
authors = [{name = "Yuhui", email = "yuhuibc@gmail.com"}]
maintainers = [{name = "Yuhui", email = "yuhuibc@gmail.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
description = "Python package for interacting with APIs available at Data.gov.sg"
keywords = [
'datagovsg',
'data.gov.sg',
"python",
"singapore",
"wrapper",
]
license = "GPL-3.0-or-later"
license-files = ["LICENSE.txt"]
readme = "README.rst"
requires-python = ">= 3.13"
[project.urls]
homepage = "https://github.com/yuhui/datagovsg"
documentation = "https://datagovsg.readthedocs.io/en/latest/"
repository = "https://github.com/yuhui/datagovsg.git"
issues = "https://github.com/yuhui/datagovsg/issues"
changelog = "https://github.com/yuhui/datagovsg/blob/master/CHANGELOG.rst"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "datagovsg.__version__"}
[tool.setuptools.package-data]
datagovsg = ["py.typed"]