-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
64 lines (57 loc) · 1.6 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
[metadata]
name = tap-intacct
version = 0.1.4
description = Singer.io tap for extracting data from the Intacct API.
long_description = file: README.md
long_description_content_type = text/markdown
author = Pollen, hotglue
url = https://github.com/hotgluexyz/tap-intacct
project_urls =
Changelog = https://github.com/hotgluexyz/tap-intacct/blob/master/HISTORY.md
license = GNU Affero General Public v3
keywords = intacct, singer, stitch, ETL
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
license_file = LICENSE
[options]
package_dir=
=src
packages=find:
py_modules = tap_intacct
include_package_data = true
zip_safe = False
python_requires = >=3.7
install_requires =
singer-python>=5.0.12
requests>=2.20.0
xmltodict==0.12.0
backoff==1.8.0
[options.package_data]
schemas = tap_intacct/schemas/*.json
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
tap-intacct = tap_intacct:main
[flake8]
max-line-length = 120
select = C,E,F,W,B,B950
ignore = E203,E501,W503
[isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_singer = singer
known_first_party =
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,SINGER,FIRSTPARTY,LOCALFOLDER