-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.66 KB
/
setup.py
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
from pathlib import Path
import setuptools
from kanjidraw import __version__
info = Path(__file__).with_name("README.md").read_text(encoding = "utf8")
setuptools.setup(
name = "kanjidraw",
url = "https://github.com/obfusk/kanjidraw",
description = "handwritten kanji recognition",
long_description = info,
long_description_content_type = "text/markdown",
version = __version__,
author = "FC Stegerman",
author_email = "[email protected]",
license = "AGPLv3+",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: Japanese",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
# "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
# "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing",
"Topic :: Utilities",
],
keywords = "japanese kanji draw handwriting",
packages = setuptools.find_packages(),
package_data = dict(kanjidraw = ["data.json"]),
entry_points = dict(
console_scripts = ["kanjidraw = kanjidraw.gui:main"]
),
python_requires = ">=3.5",
)