forked from sciurius/joplin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (37 loc) · 943 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
38
39
40
[metadata]
name = joplin_api
description = "Joplin Editor - API"
author = FoxMaSk
author_email = [email protected]
maintainer = FoxMaSk
maintainer_email = [email protected]
url = https://github.com/foxmask/joplin-api
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD License
keywords = joplin web editor api
version= attr: joplin_api.__version__
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet
Topic :: Communications
Topic :: Database
[options]
packages = find:
zip_safe = false
include_package_data = true
install_requires =
httpx
[options.packages.find]
exclude =
tests
[flake8]
max-line-length = 120
exclude = .tox,build,.eggs
ignore = F401