-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "endnote-fieldcode-gui"
version = "0.2.1"
description = "Local GUI wrapper for converting numeric and APA author-year DOCX citations into EndNote-compatible field codes."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = [
"endnote",
"docx",
"word",
"citations",
"apa",
"author-year",
"bibliography",
"field-codes",
"reference-manager",
"macos",
"offline",
"academic-writing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing",
]
dependencies = [
"lxml>=4.9",
"PySide6>=6.7",
]
[project.urls]
Homepage = "https://github.com/wmyung/endnote-fieldcode-gui"
Repository = "https://github.com/wmyung/endnote-fieldcode-gui"
Issues = "https://github.com/wmyung/endnote-fieldcode-gui/issues"
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.5",
"pyinstaller>=6",
]
[project.scripts]
endnote-fieldcode-gui = "endnote_gui.gui:main"
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = [".venv", "work", "outputs", "build", "dist"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"endnote_gui/converter.py" = ["ALL"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["endnote_gui*"]