forked from beeware/rubicon-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
68 lines (64 loc) · 1.93 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
64
65
66
67
68
[metadata]
name = rubicon-objc
url = https://beeware.org/rubicon
project_urls =
Funding = https://beeware.org/contributing/membership/
Documentation = https://rubicon-objc.readthedocs.io/en/latest/
Tracker = https://github.com/beeware/rubicon-objc/issues
Source = https://github.com/beeware/rubicon-objc
author = Russell Keith-Magee
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Objective C
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
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
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
license = New BSD
license_files =
LICENSE
description = A bridge between an Objective C runtime environment and Python.
long_description = file: README.rst
long_description_content_type = text/x-rst
[options]
python_requires = >=3.7
packages = find:
package_dir =
= src
install_requires =
# We need importlib.metadata.version, added in Python 3.8
importlib_metadata >= 4.4; python_version < "3.8"
[options.packages.find]
where = src
[options.extras_require]
dev =
# Pre-commit 3.0 dropped support for Python 3.7
pre-commit == 2.21.0; python_version < "3.8"
pre-commit == 3.2.1; python_version >= "3.8"
pytest == 7.2.2
pytest-tldr == 0.2.5
setuptools_scm[toml] == 7.1.0
tox == 4.4.8
docs =
furo == 2023.3.23
pyenchant == 3.2.2
sphinx == 6.1.3
sphinx_tabs == 3.4.1
sphinx-autobuild == 2021.3.14
sphinxcontrib-spelling == 8.0.0
[flake8]
# https://flake8.readthedocs.org/en/latest/
exclude=\
venv*/*,\
local/*,\
.tox/*
max-complexity = 20
ignore = E203,E266,E501,W503