forked from ibLeDy/timezone-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
84 lines (75 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = timezone_converter
version = 0.8.0
description = Compare your local timezone with foreign ones.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ibLeDy/timezone-converter
author = Iago Alonso
author_email = deejaynof@gmail.com
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Topic :: Terminals
Topic :: Utilities
Typing :: Typed
[options]
packages = find:
install_requires =
pytz>=2021.1
rich>=10.0.1
importlib-metadata;python_version<"3.8"
python_requires = >=3.6.1
[options.packages.find]
exclude =
tests*
[options.entry_points]
console_scripts =
timezone-converter = timezone_converter.main:main
[coverage:run]
plugins = covdefaults
[tox:tox]
envlist = py36, py37, py38, py39
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
[testenv]
commands =
timezone-converter
timezone-converter --help
timezone-converter tijuana
timezone-converter tijuana --single
timezone-converter tijuana --single 14
timezone-converter tijuana new_york
timezone-converter tijuana new_york --single
timezone-converter tijuana --zone
timezone-converter tijuana --list
timezone-converter tijuana --list tbd
[mypy]
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
no_implicit_reexport = true
[mypy-tests.*]
disallow_untyped_defs = false