-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
90 lines (80 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "svector-sdk"
version = "1.7.6"
description = "Official Python SDK for SVECTOR AI Models - Advanced conversational AI and language models"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "SVECTOR Team", email = "support@svector.co.in"}
]
maintainers = [
{name = "SVECTOR Team", email = "support@svector.co.in"}
]
keywords = [
"svector", "ai", "machine-learning", "api",
"llm", "spec-chat", "artificial-intelligence", "conversational-ai", "language-models"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"requests>=2.25.0",
"aiohttp>=3.8.0",
"typing-extensions>=4.0.0;python_version<'3.10'",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.10",
"black>=21.0",
"flake8>=3.8",
"mypy>=0.900",
"twine>=3.0",
"build>=0.7",
]
[project.urls]
Homepage = "https://www.svector.co.in"
Documentation = "https://platform.svector.co.in"
Repository = "https://github.com/svector-corporation/svector-python"
"Bug Tracker" = "https://github.com/svector-corporation/svector-python/issues"
Changelog = "https://github.com/svector-corporation/svector-python/blob/main/CHANGELOG.md"
[project.scripts]
svector = "svector.cli:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["svector*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
svector = ["py.typed"]
[tool.black]
line-length = 100
target-version = ["py38"]
include = '\.pyi?$'
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]