forked from anthropics/anthropic-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 962 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
36
37
38
39
40
41
[build-system]
requires = [
"setuptools >= 61.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "anthropic"
version = "0.2.9"
description = "Library for accessing the anthropic API"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["anthropic", "anthropicai"]
license = {text = "MIT"}
authors = [
{name = "Anthropic"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"httpx",
'importlib-metadata; python_version<"3.8"',
"requests",
"tokenizers",
"aiohttp",
]
[project.urls]
homepage = "https://github.com/anthropics/anthropic-sdk-python"
repository = "https://github.com/anthropics/anthropic-sdk-python.git"
#documentation = "https://readthedocs.org"
#changelog = "https://github.com/anthropics/anthropic-sdk-python/"
[project.optional-dependencies]
dev = [
"black >= 22.3.0",
"pytest",
]