Skip to content

Commit b8830e4

Browse files
committed
init files
0 parents  commit b8830e4

6 files changed

Lines changed: 62 additions & 0 deletions

File tree

.coveragerc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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__.:

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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/

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include LICENSE-MIT

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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'

tox.ini

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

0 commit comments

Comments
 (0)