Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bbecb96

Browse files
MarkKoz64json
authored andcommitted
Add boilerplate
1 parent 2616be4 commit bbecb96

File tree

3 files changed

+71
-1
lines changed

3 files changed

+71
-1
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
wheels/
20+
*.egg-info/
21+
.installed.cfg
22+
*.egg
23+
MANIFEST
24+
25+
# Unit test / coverage reports
26+
htmlcov/
27+
.tox/
28+
.coverage
29+
.coverage.*
30+
.cache
31+
nosetests.xml
32+
coverage.xml
33+
*.cover
34+
.hypothesis/
35+
.pytest_cache/
36+
37+
# pyenv
38+
.python-version
39+
40+
# Environments
41+
.env
42+
.venv
43+
env/
44+
venv/
45+
ENV/
46+
env.bak/
47+
venv.bak/
48+

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
# tracers.py
1+
# tracers.py
2+
3+
> `tracers.py` is a visualization library for Python.
4+
5+
This repository is part of the project [Algorithm Visualizer](https://github.com/algorithm-visualizer).
6+
7+
## Installation
8+
9+
```bash
10+
TODO
11+
```
12+
13+
## Usage
14+
15+
```python
16+
TODO
17+
```
18+
19+
Check out the [API reference](https://github.com/algorithm-visualizer/algorithm-visualizer/wiki) for more information.
20+
21+
## Contributing
22+
23+
Check out the [contributing guidelines](https://github.com/algorithm-visualizer/tracers.py/blob/master/CONTRIBUTING.md).

tracer/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)