-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "paperflow-postprocess"
version = "0.1.1"
description = "PaperFlow markdown post-processing for citations, figures, tables, and frontmatter."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Philip Liu" }
]
keywords = ["markdown", "obsidian", "citations", "latex", "paperflow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing :: Markup",
]
[project.urls]
Homepage = "https://paperflowing.com"
Repository = "https://github.com/TylerMorrison21/paperflow"
Issues = "https://github.com/TylerMorrison21/paperflow/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["paperflow_postprocess*"]