-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 888 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "neem_to_sql"
version = "1.0.16"
description = "Convert NEEMs database from Mongo to SQL"
readme = "README.md"
authors = [{ name = "Abdelrhman Bassiouny", email = "abassiou@uni-bremen.de" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = ["query", "neems", "database", "sql", "robotics", "knowledge", "memories", "episodic"]
dependencies = ["ipython==8.12.0",
"numpy==1.24.1",
"orderedset==2.0.3",
"pymongo==4.3.3",
"pymysql==1.0.3",
"PyYAML==6.0",
"rdflib==7.0.0",
"SQLAlchemy==2.0.4",
"tqdm==4.64.1",
"typing-extensions"
]
requires-python = ">=3.8"
[project.scripts]
neems_to_sql = "neems_to_sql.neems_to_sql:main"
[project.urls]
Homepage = "https://github.com/AbdelrhmanBassiouny/neem_to_sql"