-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (61 loc) · 1.55 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
# Documentation: https://setuptools.readthedocs.io/en/latest/setuptools.html
[metadata]
name = whatsmyip
version = attr: whatsmyip.__version__.__version__
description = A tool to find your public IP address.
long_description = file: README.md, LICENSE.md, HISTORY.md
long_description_content_type = text/markdown
license = MIT
author = Therry van Neerven
author_email = [email protected]
url = https://github.com/Ecno92/whatsmyip
platforms =
win32
linux
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Topic :: Utilities
Environment :: Console
[options]
python_requires = >=3.6.0
install_requires =
dnspython >= 1.15.0
requests >= 2.12.4
urllib3 >= 1.24.2
click >= 6.7
setup_requires =
pytest-runner >= 2.12.1
tests_require =
pytest >= 3.8.0
include_package_data = True
zip_safe = False
packages = find:
package_dir =
= src
[options.packages.find]
where =
src
exclude =
tests
[options.entry_points]
console_scripts =
myip = whatsmyip.cli.main:main
[bdist_wheel]
python-tag = py36,py37
[flake8]
exclude =
.git
.venv
.eggs
[mypy]
cache_dir = tmp/.mypy_cache
[tool:pytest]
python_paths = src/
cache_dir = tmp/.pytest_cache
addopts = --cov=whatsmyip --cov-report html
[aliases]
test=pytest