-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 984 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (26 loc) · 984 Bytes
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
[project]
name = "ninox"
authors = [{name = "Andrei Paraschiv", email = "andrei@thephpfactory.com"}]
requires-python = ">=3.8"
description = "A wrapper for the Ninox DB API"
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["database", "web", "api", "ninox"]
classifiers = [
'Environment :: Console',
'Environment :: Other Environment',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Database',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/AndyTheFactory/ninox-api"
Repository = "https://github.com/AndyTheFactory/ninox-api.git"
Issues = "https://github.com/AndyTheFactory/ninox-api/issues"
Changelog = "https://github.com/AndyTheFactory/ninox-api/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "ninox.__version__"}