-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.3 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codexsync"
version = "0.1.2"
description = "Local-first Codex state sync utility"
readme = "README.MD"
requires-python = ">=3.11"
authors = [{ name = "codexSync contributors" }]
license = "GPL-3.0-only"
license-files = ["LICENSE"]
keywords = ["codex", "sync", "backup", "cli", "local-first"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/kroxiksut/codexSync"
Repository = "https://github.com/kroxiksut/codexSync"
Issues = "https://github.com/kroxiksut/codexSync/issues"
[project.scripts]
codexsync = "codexsync.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.package-data]
codexsync = ["config.example.toml"]
[tool.setuptools.packages.find]
where = ["src"]