-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
63 lines (57 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
[metadata]
name = faicons
version = attr: faicons.__version__
author = Carson Sievert
author_email = carson@rstudio.com
url = https://github.com/rstudio/py-faicons
description = An interface to Font-Awesome for use in Shiny.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = fontawesome
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Text Processing :: Markup :: HTML
project_urls =
Bug Tracker = https://github.com/rstudio/py-faicons/issues
Source Code = https://github.com/rstudio/py-faicons
[options]
python_requires = >=3.8
packages = find:
test_suite = tests
include_package_data = True
install_requires =
htmltools>=0.1.4.9002
tests_require =
pytest>=3
zip_safe = False
[options.extras_require]
test =
pytest>=6.2.4
dev =
black>=23.1.0
# Python 3.7 needs a specific version of flake8 to satisfy other dependencies.
flake8==3.9.2;python_version<="3.7"
flake8>=6.0.0;python_version>"3.7"
wheel
[options.packages.find]
include = faicons, faicons.*
[options.package_data]
faicons = py.typed
[flake8]
# E302: Expected 2 blank lines
# E501: Line too long
# F403: 'from module import *' used; unable to detect undefined names
# F405: Name may be undefined, or defined from star imports
# W503: Line break occurred before a binary operator
ignore = E302, E501, F403, F405, W503
exclude = docs