forked from uptick/pymyob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (34 loc) · 947 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
33
34
35
36
37
[metadata]
name = pymyob
version = attr: myob.__version__
author = Jarek Głowacki
author_email = [email protected]
license = BSD
description = A Python API around MYOB's AccountRight API.
keywords = myob
url = https://github.com/uptick/pymyob
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Office/Business
[options]
packages = myob
install_requires =
requests>=2.10.0
requests-oauthlib>=0.6.0
[flake8]
ignore = E501
max-line-length = 100
[isort]
extra_standard_library = requests
multi_line_output = 3
include_trailing_comma = True
line_length = 100