-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 1.04 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "scdbf"
version = "0.0.4"
description = "Simple cat for dbf files"
authors = [
{ name="Jesus Baizabal", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.5"
keywords = ["cat", "dbf"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"dbfread",
]
[project.urls]
"Homepage" = "https://github.com/ambagasdowa/scdbf"
"Bug Tracker" = "https://github.com/ambagasdowa/scdbf/issues"
[project.scripts]
scdbf = "scdbf.scdbf:main"
#dynamic = ["version"]
#[project.optional-dependencies]
#pdf = ["ReportLab>=1.2", "RXP"]
#rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
#
#[project.scripts]
#my-script = "my_package.module:function"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/