-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.9 KB
/
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
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-cli"
version = "0.2.3"
description = "Prime Intellect CLI"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Prime Intellect", email = "[email protected]" }
]
dependencies = [
"typer[all]>=0.9.0",
"requests>=2.31.0",
"rich>=13.3.1",
"pydantic>=2.0.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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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.1.8",
"mypy>=1.8.0",
"types-requests>=2.31.0",
"pre-commit>=3.5.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
src = ["."]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
extend-select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort (import sorting)
]
[tool.mypy]
python_version = "3.8"
disallow_untyped_defs = true
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = "pytest"
ignore_missing_imports = true