-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 957 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
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "graphai_client"
version = "1.17.0"
authors = [
{ name="Renier Yves", email="yves.renier@epfl.ch" },
]
description = "A client library to access the graphai services"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
'termcolor',
'mysql-connector-python>=9.2.0',
'isodate',
'google-api-python-client'
]
[project.urls]
"Homepage" = "https://github.com/epflgraph/graphai-client"
"Bug Tracker" = "https://github.com/epflgraph/graphai-client/issues"
[tool.hatch.build.targets.sdist]
include = [
"graphai_client/",
]
exclude = [
"/config/",
"/venv/",
"__pycache__/",
]
[tool.hatch.build.targets.wheel]
packages = ["graphai_client"]