-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
77 lines (72 loc) · 2.14 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# aixplain/pyproject.toml
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["aixplain", "tests"]
namespaces = true
[project]
name = "aiXplain"
version = "0.2.44"
description = "aiXplain SDK adds AI functions to software."
readme = "README.md"
requires-python = ">=3.9, <4"
license = { text = "Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0" }
authors = [
{email = "ahmet@aixplain.com"},
{email = "hadi@aixplain.com"},
{email = "kadir.pekel@aixplain.com"},
{email = "zaina.abushaban@aixplain.com"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"requests>=2.1.0",
"tqdm>=4.1.0",
"pandas>=2.0.0",
"python-dotenv>=1.0.0",
"validators>=0.20.0",
"filetype>=1.2.0",
"click>=7.1.2",
"PyYAML>=6.0.1",
"dataclasses-json>=0.5.2",
"Jinja2==3.1.6",
"sentry-sdk>=1.0.0",
"pydantic>=2.10.6",
"filelock>=3.0.0",
"twine>=6.2.0",
"pre-commit>=4.3.0",
]
[project.urls]
Homepage = "https://github.com/aixplain/aiXplain"
Documentation = "https://github.com/aixplain/pipelines/tree/main/docs"
[project.scripts]
aixplain = "aixplain.cli_groups:run_cli"
[project.optional-dependencies]
model-builder = [
"model-interfaces~=0.0.2"
]
test = [
"pytest>=6.1.0",
"docker>=6.1.3",
"requests-mock>=1.11.0",
"pytest-mock>=3.10.0",
"pytest-rerunfailures>=16.0"
]