Skip to content

Commit ce1a757

Browse files
committed
Update .gitignore
1 parent ed62c89 commit ce1a757

File tree

7 files changed

+75
-215
lines changed

7 files changed

+75
-215
lines changed

.eggs/README.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins.
2+
3+
This directory caches those eggs to prevent repeated downloads.
4+
5+
However, it is safe to delete this directory.
6+

.gitignore

Lines changed: 69 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,72 @@
1+
# Project-specific generated files
2+
docs/build/
3+
4+
/empty
5+
6+
# Byte-compiled / optimized / DLL files / editor temp files
7+
__pycache__/
8+
*.py[cod]
9+
*~
10+
\#*
11+
.#*
112
*.swp
213

3-
/.pytest_cache/
4-
/.coverage
5-
/.cache/
6-
/.eggs/
7-
/.pybuild/
14+
# C extensions
15+
*.so
16+
17+
# Distribution / packaging
18+
.Python
819
/build/
9-
/docs/build/
10-
__pycache__/
11-
/trio_asyncio.egg-info/
12-
/.pybuild/
13-
/dist
14-
/empty
20+
/develop-eggs/
21+
/dist/
22+
/eggs/
23+
/lib/
24+
/lib64/
25+
/parts/
26+
/sdist/
27+
/var/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
/.pybuild
32+
pip-wheel-metadata/
33+
34+
# Installer logs
35+
pip-log.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.venv/
41+
pyvenv.cfg
42+
.coverage
43+
.coverage.*
44+
.cache
45+
.pytest_cache/
46+
.mypy_cache/
47+
nosetests.xml
48+
coverage.xml
49+
50+
# Temp file during Mypy processing
51+
mypy_annotate.dat
52+
53+
# Translations
54+
*.mo
55+
56+
# Mr Developer
57+
.mr.developer.cfg
58+
.project
59+
.pydevproject
60+
61+
# Rope
62+
.ropeproject
63+
64+
# Django stuff:
65+
*.log
66+
*.pot
67+
68+
# Sphinx documentation
69+
doc/_build/
70+
71+
# PyCharm
72+
.idea/

src/trio_asyncio.egg-info/PKG-INFO

Lines changed: 0 additions & 133 deletions
This file was deleted.

src/trio_asyncio.egg-info/SOURCES.txt

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/trio_asyncio.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/trio_asyncio.egg-info/requires.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/trio_asyncio.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)