-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (38 loc) · 1.01 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
[metadata]
name = friendly_custom_exception
version = attr: friendly_custom_exception.__version__
description = Showing how to add custom exceptions to friendly-traceback
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 1 - Planning
Environment :: Console
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Intended Audience :: Education
Topic :: Education
url = https://github.com/friendly-traceback/friendly-custom-exception
author = Andre Roberge
author_email = [email protected]
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
zip_safe = False
install_requires =
friendly >= 0.5.35
jupyter
[options.packages.find]
exclude =
dist
build
tools
demos
tests
tests.*
*.tests
*.tests.*