-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (62 loc) · 1.52 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
[project]
name = "buridan"
version = "0.0.3"
description = "A command line interface (CLI) for adding components and themes to your project."
requires-python = ">=3.11"
dependencies = []
readme = "cli/README.md"
license = "MIT"
authors = [
{ name = "LineIndent", email = "line.indent@gmail.com" }
]
keywords = [
"cli",
"ui",
"design-system",
"reflex",
"components",
"tailwind",
"base-ui"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Code Generators"
]
[project.urls]
Homepage = "https://github.com/LineIndent/native"
Repository = "https://github.com/LineIndent/native"
Issues = "https://github.com/LineIndent/native/issues"
[dependency-groups]
dev = [
"reflex==0.9.8",
"pillow>=12.2.0",
"PyYAML>=6.0.3",
"questionary>=2.1.1",
"google-genai",
"beautifulsoup4>=4.15.0",
"markdown>=3.10.2",
"ruff>=0.15.22",
"black",
"pytest>=9.1.1",
"inquirerpy",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[project.scripts]
buridan = "cli.main:main"
dev = "cli.dev:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["native", "cli", "components"]