-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
39 lines (39 loc) · 1.14 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "emacs-paw"
version = "0.1.6"
description = "Study for a life in Emacs with advanced annotation and language learning tools."
readme = "README_PAW_CLI.md"
authors = [{ name = "Damon Chan" }]
license = { file = "LICENSE" }
keywords = ["Emacs", "annotation", "language learning", "dictionary", "sql", "org-mode"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
"Natural Language :: Japanese",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"Flask",
"flask-cors",
"requests",
"nltk",
"mecab-python3",
"unidic-lite",
"janome"
]
[project.urls]
Homepage = "https://github.com/chenyanming/paw"
Repository = "https://github.com/chenyanming/paw"
[project.scripts]
paw = "paw.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["paw"]