File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ [run]
2+ source =
3+ dateandtimeparser
4+ tests
5+ branch = True
6+ omit =
7+ dateandtimeparser/cli.py
8+
9+ [report]
10+ exclude_lines =
11+ no cov
12+ no qa
13+ noqa
14+ pragma: no cover
15+ if __name__ == .__main__.:
Original file line number Diff line number Diff line change 1+ # Auto detect text files and perform LF normalization
2+ * text =auto
Original file line number Diff line number Diff line change 1+ * .log
2+ * .pyc
3+ .cache /
4+ .coverage
5+ .idea /
6+ .vscode /
7+ dateandtimeparser.egg-info /
8+ build /
9+ dist /
10+ docs /build /
11+ venv /
12+ wheelhouse /
Original file line number Diff line number Diff line change 1+ include README.md
2+ include LICENSE-MIT
Original file line number Diff line number Diff line change 1+ [metadata ]
2+ name = ' dateandtimeparser'
3+ version = ' 0.0.1'
4+ description = ' date and time parsing library.'
5+ author = ' glib.ai'
6+ author_email = ' samith@glib.ai'
7+ license = ' MIT'
8+ url = ' https://github.com/GlibAi/dateandtimeparser'
9+
10+ [requires ]
11+ python_version = [' 3.6' ]
12+
13+ [build-system ]
14+ requires = [' setuptools' , ' wheel' ]
15+
16+ [tool .hatch .commands ]
17+ prerelease = ' hatch build'
Original file line number Diff line number Diff line change 1+ [tox]
2+ envlist =
3+ py36,
4+
5+ [testenv]
6+ passenv = *
7+ deps =
8+ coverage
9+ pytest
10+ commands =
11+ python setup.py --quiet clean develop
12+ coverage run --parallel-mode -m pytest
13+ coverage combine --append
14+ coverage report -m
You can’t perform that action at this time.
0 commit comments