-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (29 loc) · 966 Bytes
/
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pdf-to-duc"
version = "0.1.0"
requires-python = ">=3.7"
dependencies = ["ducflair_duc"]
description = "Transform PDF's into Duc CAD files"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "Apache-2.0" }
authors = [
{ name = "Ducflair", email = "support@ducflair.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[project.urls]
"Homepage" = "https://ducflair.com"
"Source" = "https://github.com/ducflair/pdf-to-duc"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pdf_to_duc*"]