-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 834 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
36
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scholarref"
version = "1.0.1"
description = "A professional Python tool and modern desktop GUI for converting academic citations and document formatting (APA 7, Harvard, Vancouver) in Microsoft Word (.docx) files."
readme = "README.md"
authors = [
{ name = "Brodie Mangan" }
]
requires-python = ">=3.9"
dependencies = [
"python-docx>=0.8.11",
"customtkinter>=5.2.2",
"Pillow>=10.0.0",
]
[project.optional-dependencies]
build = [
"pyinstaller>=6.10.0",
"pytest>=8.0.0",
]
[project.scripts]
scholarref-gui = "scholarref_gui:main"
[tool.setuptools]
py-modules = [
"reference_converter",
"scholarref",
"scholarref_gui",
"scholarref_runtime",
"verify_reference_integrity",
]