-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.63 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
[build-system]
requires = [
"setuptools",
"landtransportsg",
]
build-backend = "setuptools.build_meta"
[project]
name = "landtransportsg"
dynamic = [
"dependencies",
"version"
]
authors = [
{ name = "Yuhui", email = "yuhuibc@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"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 LTA DataMall"
keywords = [
"lta",
"land transport authority",
"datamall",
"python",
"singapore",
"wrapper",
]
license = { file = "LICENSE.txt" }
readme = "README.rst"
requires-python = ">= 3.10"
[project.urls]
Homepage = "https://github.com/yuhui/landtransportsg"
Documentation = "https://landtransportsg.readthedocs.io/en/latest/"
Repository = "https://github.com/yuhui/landtransportsg.git"
"Bug Tracker" = "https://github.com/yuhui/landtransportsg/issues"
Changelog = "https://github.com/yuhui/landtransportsg/blob/master/CHANGELOG.rst"
[tool.setuptools.dynamic]
dependencies = { file = [ "requirements.txt" ] }
version = { attr = "landtransportsg.__version__" }
[tool.setuptools.package-data]
landtransportsg = [ "py.typed" ]