-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
52 lines (47 loc) · 1.36 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
[metadata]
name = sidrapy
# Version needs regex in setup.py.
url = https://github.com/AlanTaranti/sidrapy
project_urls =
Documentation = https://sidrapy.readthedocs.io
Code = https://github.com/AlanTaranti/sidrapy
Issue tracker = https://github.com/AlanTaranti/sidrapy/issues
license = MIT
maintainer = Alan Taranti
maintainer_email = [email protected]
description = A library that provides a python interface for the IBGE SIDRA API.
keywords = ibge, sidra, api, brasil, brazil, estatistica, statistics
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: Portuguese (Brazilian)
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.8
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = src
[tool:pytest]
testpaths = tests
filterwarnings =
error
[coverage:run]
branch = True
source =
sidrapy
tests
[coverage:paths]
source =
src
*/site-packages