-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.79 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
57
58
[build-system]
requires = ['hatchling>=1.11.0']
build-backend = 'hatchling.build'
[project.urls]
Documentation = 'https://github.com/oeg-upm/mapeathor/wiki'
Source = 'https://github.com/oeg-upm/mapeathor/'
Tracker = 'https://github.com/oeg-upm/mapeathor/issues'
CI = 'https://github.com/oeg-upm/mapeathor/actions'
Homepage = 'https://morph.oeg.fi.upm.es/tool/mapeathor'
History = 'https://github.com/oeg-upm/mapeathor/actions'
#Sponsor = ''
[project]
name = 'mapeathor'
description = 'Mapeathor translates your mapping rules specified in spreadsheets to a mapping language.'
readme = 'README.md'
keywords = ['Mapeathor', 'R2RML', 'RML', 'YARRRML', 'Knowledge Graph', 'Data Integration']
authors = [
{name = 'Ana Iglesias-Molina', email = '[email protected]'}
]
license = {file = "LICENSE"}
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Pre-processors',
'Topic :: Utilities',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
]
requires-python = '>=3.6'
dynamic = ['version']
dependencies = [
'pandas',
'argparse',
'openpyxl',
'httplib2',
'configparser',
'flask',
'flask_swagger',
'flask_swagger_ui',
'flask_restful',
'requests',
'jinja2'
]
[tool.hatch.version]
path = 'src/mapeathor/_version.py'