-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (50 loc) · 1.16 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
# coding: utf-8
[metadata]
name = url64
description = url64 decode/encode for python
long_description = file: README.md
long_description_content_type = text/markdown
author = Puria Nafisi Azizi
author_email = puria@dyne.org
project_urls =
Source Code = https://github.com/puria/url64
url = https://github.com/puria/url64
license = Apache-2.0
license_file = LICENSE
keywords = serialization url64 encoder decoder
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python
[options]
packages = find:
setup_requires =
pytest-runner
tests_require =
pytest
pytest-cov
codecov
[options.extras_require]
test =
pytest
pytest-cov
[tool:pytest]
addopts = -v -rsx --cov --cov-report=xml
testpaths = tests
[coverage:run]
source = url64
[coverage:report]
show_missing = true
[flake8]
ignore = E501
max-line-length = 99
exclude = .tox,build,docs
[bdist_wheel]
universal = 1
[aliases]
test=pytest
[semantic_release]
version_variable = setup.py:__version__