-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
33 lines (29 loc) · 806 Bytes
/
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
[metadata]
name = pyonvista
version = attr: pyonvista.__version__
description = A tiny python API wrapper for onvista.de financial website.
long_description = file: README.md, LICENSE.md
long_description_content_type = text/markdown
keywords = API, onvista, aiohttp, finance
license = MIT
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
author = Simon Bauer
author_email = seimen@cloasdata.de
url = https://github.com/cloasdata/pyonvista
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages = find:
install_requires =
aiohttp >= 3.8.0
importlib; python_version >= "3.10"
[options.packages.find]
where = src
[options.extras_require]
test =
pytest >= 7.0.0