-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.22 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "flatcode"
version = "0.1.4"
authors = [
{ name="jaywang98", email="[email protected]" },
]
description = "A smart CLI tool to 'flatten' your project's code into a single, LLM-friendly context file."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
]
dependencies = [
"tiktoken",
"pathspec>=0.11.0"
]
[project.scripts]
flatcode = "flatcode.cli:main"
[project.urls]
Homepage = "https://github.com/jaywang98/flatcode"
Issues = "https://github.com/jaywang98/flatcode/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"build",
"twine",
]
test = [
"pytest",
"pytest-cov",
]
# Configuration for Pytest
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
# Tells pytest to add 'src' to the path, fixing import errors
pythonpath = [
"src"
]