-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (47 loc) · 1.6 KB
/
setup.cfg
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
[metadata]
name = textual-mandelbrot
description = A simple Mandelbrot explorer for the terminal.
version = attr: textual_mandelbrot.__version__
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davep/textual-mandelbrot
author = Dave Pearson
author_email = davep@davep.org
maintainer = Dave Pearson
maintainer_email = davep@davep.org
license = License :: OSI Approved :: MIT License
license_files = LICENCE
keywords = terminal, library, mandelbrot, maths
classifiers =
License :: OSI Approved :: MIT License
Environment :: Console
Development Status :: 3 - Alpha
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Terminals
Topic :: Software Development :: Libraries
Typing :: Typed
project_urls =
Documentation = https://github.com/davep/textual-mandelbrot/blob/main/README.md
Source = https://github.com/davep/textual-mandelbrot
Issues = https://github.com/davep/textual-mandelbrot/issues
Discussions = https://github.com/davep/textual-mandelbrot/discussions
[options]
packages = find:
platforms = any
include_package_data = True
install_requires =
textual>=0.57.0,<0.61.0
textual-canvas
python_requires = >=3.8
[options.package_data]
textual_mandelbrot = py.typed
[options.entry_points]
console_scripts =
mandelexp = textual_mandelbrot.__main__:main
### setup.cfg ends here