-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
53 lines (51 loc) · 1.66 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "outwiker"
version = "4.0.0.948"
description = "A cross-platform software for keeping your notes in a tree"
authors = [
{name = "Eugene Ilin (aka Jenyay)", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["outliner", "notepad", "notes", "wiki"]
requires-python = ">=3.8"
dependencies = [
"wxPython==4.2.1",
"Pillow==10.4.0",
"idna>=2.10",
"pyparsing==3.1.3",
"psutil>=6.0.0",
"rcssmin>=1.1"
]
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Natural Language :: Russian",
"Natural Language :: Ukrainian",
"Natural Language :: Swedish",
"Natural Language :: German",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Desktop Environment :: File Managers",
"Topic :: Office/Business",
"Topic :: Text Editors",
"Topic :: Text Processing :: Markup",
]
#dynamic = ["version"]
[project.urls]
Homepage = "https://jenyay.net/Outwiker/English"
Documentation = "https://outwiker.readthedocs.io/"
Repository = "https://github.com/Jenyay/outwiker"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"