|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools", "wheel"] |
| 2 | +requires = ["setuptools>=61.0.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "mozloc" |
| 7 | +version = "1.4.0" |
| 8 | +description = "Using Mozilla Location services, log location vs. time using WiFi or convert to KML." |
| 9 | +keywords = ["wifi", "geolocation"] |
| 10 | +classifiers = ["Development Status :: 5 - Production/Stable", |
| 11 | + "Environment :: Console", |
| 12 | + "Intended Audience :: Information Technology", |
| 13 | + "Intended Audience :: System Administrators", |
| 14 | + "Operating System :: POSIX :: Linux", |
| 15 | + "Operating System :: MacOS", |
| 16 | + "Operating System :: Microsoft :: Windows", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Topic :: System :: Networking", |
| 19 | + "Topic :: Utilities" |
| 20 | +] |
| 21 | +requires-python = ">=3.7" |
| 22 | +dynamic = ["readme"] |
| 23 | +dependencies = ["requests", "pandas"] |
| 24 | + |
| 25 | +[tool.setuptools.dynamic] |
| 26 | +readme = {file = ["README.md"], content-type = "text/markdown"} |
| 27 | + |
| 28 | +[project.optional-dependencies] |
| 29 | +tests = ["pytest"] |
| 30 | +lint = ["flake8", "flake8-bugbear", "flake8-builtins", "flake8-blind-except", "mypy"] |
3 | 31 |
|
4 | 32 | [tool.black] |
5 | | -line-length = 132 |
| 33 | +line-length = 100 |
| 34 | + |
| 35 | +[tool.isort] |
| 36 | +profile = "black" |
6 | 37 |
|
7 | | -[tool.pytest.ini_options] |
8 | | -addopts = "-ra -v" |
| 38 | +[tool.mypy] |
| 39 | +files = ["src"] |
| 40 | +ignore_missing_imports = true |
0 commit comments