Skip to content

Commit 45851d1

Browse files
committed
Initial commit with some simple examples.
Project files are mostly stubs using other projects as reference.
1 parent 172d0cf commit 45851d1

File tree

8 files changed

+1507
-1
lines changed

8 files changed

+1507
-1
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Python development, test, and build
2+
__pycache__
3+
build
4+
dist
5+
.cache
6+
*.pyc
7+
.tox
8+
.pytest_cache
9+
10+
# Code Coverage
11+
.coverage
12+
htmlcov
13+
14+
# PyCharm
15+
.idea
16+
17+
# Visual Studio Code
18+
.vscode
19+
20+
# mypy optional static type checker
21+
.mypy_cache
22+
*~

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 python-tableformatter
3+
Copyright (c) 2018 Eric Lin
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
recursive-include examples *

0 commit comments

Comments
 (0)