-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.66 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
[build-system]
#requires = ["setuptools>=45", "wheel"]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "durdraw"
description = "Versatile ASCII and ANSI Art terminal text editor"
readme = "README.md"
#license = "BSD-3-Clause"
#license-files = [
# "LICENSE",
#]
version = "0.29.0"
classifiers = [
'Environment :: Console :: Curses',
'Topic :: Artistic Software',
'Topic :: Text Editors',
'Topic :: Terminals',
'License :: OSI Approved :: ISC License (ISCL)',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities'
]
authors = [
{name = "Sam Foster", email = "samfoster@gmail.com"},
{name = "Durdraw Contributors"},
]
requires-python = ">=3.9"
dependencies = [
"windows-curses; platform_system == 'Windows'",
]
[project.urls]
Homepage = "https://durdraw.org"
Documentation = "https://github.com/cmang/durdraw/blob/master/README.md"
Source = "https://github.com/cmang/durdraw"
#Changelog = "https://github.com/cmang/durdraw/releases"
[project.optional-dependencies]
gif-export=["Pillow>=9.0.0"]
[project.scripts]
durdraw = "durdraw.main:main"
durfetch = "durdraw.durfetch:main"
durview = "durdraw.durview:main"
[tool.setuptools]
packages = ["durdraw"]
[tool.setuptools.package-data]
durdraw = [
"help/*",
"charsets/*",
"themes/*",
"plugins/*",
"neofetch/*",
"durf/*",
]