forked from PrimeIntellect-ai/prime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.85 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
[project]
name = "prime"
dynamic = ["version"]
description = "Prime Intellect CLI + SDK"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Prime Intellect", email = "contact@primeintellect.ai" }
]
dependencies = [
"typer>=0.9.0",
"httpx>=0.25.0",
"rich>=13.3.1",
"pydantic>=2.0.0,<2.12",
"cryptography>=41.0.0",
"verifiers>=0.1.5.dev1",
"build>=1.0.0",
"toml>=0.10.0",
]
keywords = ["cli", "gpu", "cloud", "compute"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/PrimeIntellect-ai/prime-cli"
Documentation = "https://github.com/PrimeIntellect-ai/prime-cli#readme"
Repository = "https://github.com/PrimeIntellect-ai/prime-cli.git"
Changelog = "https://github.com/PrimeIntellect-ai/prime-cli/blob/main/CHANGELOG.md"
[project.scripts]
prime = "prime_cli.main:run"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.13.1",
"ty>=0.0.0a6",
"types-toml>=0.10.0",
"pre-commit>=3.5.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "src/prime_cli/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/prime_cli"]
[tool.ruff]
src = ["."]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
extend-select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort (import sorting)
]