forked from sympy/sympy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
55 lines (40 loc) · 1.11 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This file tells git what files to ignore (e.g., you won't see them as
# untracked with "git status"). Add anything to it that can be cleared
# without any worry (e.g., by "git clean -Xdf"), because it can be
# regenerated. Lines beginning with # are comments. You can also ignore
# files on a per-repository basis by modifying the core.excludesfile
# configuration option (see "git help config"). If you need to make git
# track a file that is ignored for some reason, you have to use
# "git add -f". See "git help gitignore" for more information.
# Regular Python bytecode file
*.pyc
# Optimized Python bytecode file
*.pyo
# Vim's swap files
*.sw[op]
# Generated files from Jython
*$py.class
# File generated by setup.py using MANIFEST.in
MANIFEST
# Generated by ctags (used to improve autocompletion in vim)
tags
my/
# Files generated by setup.py
dist/
build/
py3k-sympy/
# Files generated by setupegg.py
sympy.egg-info/
# Tox files
tox.ini
.tox/
# Coverage files (./bin/coverage_report.py)
.coverage
covhtml/
# Built doc files (cd doc; make html)
doc/_build/
doc/sphinx/
# Mac OS X Junk
.DS_Store
# Backup files
*~