-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (33 loc) · 1.24 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "pythesint"
description = "A Python interface to various metadata vocabularies"
readme = "README.md"
authors = [
{name = "Morten W. Hansen"},
{name = "Anton A. Korosov", email="[email protected]"},
{name = "Aleksander Vines"}
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
]
keywords = ["metadata", "standards", "thesaurus", "vocabulary"]
dependencies = ["PyYAML", "rapidfuzz", "requests", "xdg;platform_system != 'Windows'"]
urls = {Repository = "https://github.com/nansencenter/py-thesaurus-interface"}
dynamic = ["version"]