-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 983 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 983 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codedump"
version = "1.0.0"
description = "A tool to concatenate and dump code from a directory"
authors = [
{name = "sdmat-dev", email = "smat-dev@users.noreply.github.com"},
]
readme = "README.md"
requires-python = ">=3.6"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"pyperclip",
]
[project.urls]
Homepage = "https://github.com/smat-dev/codedump"
Repository = "https://github.com/smat-dev/codedump"
[project.scripts]
codedump = "codedump.codedump:main"