-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
35 lines (32 loc) · 1.06 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
[metadata]
name = Monzo API
version = 1.2.0
author = Peter McDonald
author_email = [email protected]
description = Package to interact with the API provided by Monzo bank
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/petermcd/monzo-api
project_urls =
Bug Tracker = https://github.com/petermcd/monzo-api/issues
Documentation = https://monzo-api.readthedocs.io
Source = https://github.com/petermcd/monzo-api
classifiers =
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
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Developers
Topic :: Office/Business :: Financial
[options]
packages = find:
python_requires = >=3.8
[options.extras_require]
test = flake8; isort; mypy; pytest; pytest-mock;
build = wheel; build;
docs = sphinx; sphinx_rtd_theme;
[flake8]
max_line_length = 120