-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
51 lines (45 loc) · 987 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
41
42
43
44
45
46
47
48
49
50
51
[metadata]
name = japanize-kivy
version = attr:japanize_kivy.__version__
author = momijiame
description = japanize kivy
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/momijiame/japanize_kivy
license = Apache License, Version 2.0
classifier =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
install_requires =
kivy
zip_safe = False
include_package_data = True
packages = find:
[options.extras_require]
testing =
pytest
[options.packages.find]
exclude =
tests
examples
[tool:pytest]
addopts =
-v
[flake8]
exclude =
.git,
.eggs,
__pycache__,
build,
dist
max-complexity = 10
max-line-length = 99
[wheel]
universal = 0