Skip to content

Commit 8456272

Browse files
committed
Updated .gitignore
1 parent 7506e01 commit 8456272

File tree

5 files changed

+90
-84
lines changed

5 files changed

+90
-84
lines changed

.gitignore

+41-70
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,55 @@
1-
#################
2-
## Eclipse
3-
#################
4-
5-
*.pydevproject
6-
.project
7-
.metadata
1+
# IDEA
2+
.idea/workspace.xml
3+
.idea/tasks.xml
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
env/
814
bin/
9-
tmp/
10-
*.tmp
11-
*.bak
12-
*.swp
13-
*~.nib
14-
local.properties
15-
.classpath
16-
.settings/
17-
.loadpath
18-
19-
# External tool builders
20-
.externalToolBuilders/
21-
22-
# Locally stored "Eclipse launch configurations"
23-
*.launch
24-
25-
# CDT-specific
26-
.cproject
27-
28-
# PDT-specific
29-
.buildpath
30-
31-
#################
32-
## IntelliJ IDEA
33-
#################
34-
.idea/
35-
*.iml
36-
*.iws
37-
38-
# TeamCity is a build add-in
39-
_TeamCity*
40-
41-
#############
42-
## Windows detritus
43-
#############
44-
45-
# Windows image file caches
46-
Thumbs.db
47-
ehthumbs.db
48-
49-
# Folder config file
50-
Desktop.ini
51-
52-
# Recycle Bin used on file shares
53-
$RECYCLE.BIN/
54-
55-
# Mac crap
56-
.DS_Store
57-
58-
#############
59-
## Python
60-
#############
61-
62-
*.py[co]
63-
64-
# Packages
65-
*.egg
66-
*.egg-info
67-
dist/
6815
build/
16+
develop-eggs/
17+
dist/
6918
eggs/
19+
lib/
20+
lib64/
7021
parts/
71-
var/
7222
sdist/
73-
develop-eggs/
23+
var/
24+
*.egg-info/
7425
.installed.cfg
26+
*.egg
7527

7628
# Installer logs
7729
pip-log.txt
30+
pip-delete-this-directory.txt
7831

7932
# Unit test / coverage reports
33+
.tox/
8034
.coverage
81-
.tox
35+
.cache
36+
nosetests.xml
37+
coverage.xml
8238

83-
#Translations
39+
# Translations
8440
*.mo
41+
42+
# Mr Developer
43+
.mr.developer.cfg
44+
.project
45+
.pydevproject
46+
47+
# Rope
48+
.ropeproject
49+
50+
# Django stuff:
51+
*.log
52+
*.pot
53+
54+
# Sphinx documentation
55+
docs/_build/

.idea/compiler.xml

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+4-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Crypt-Tools.iml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="PYTHON_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$" />
6+
<orderEntry type="jdk" jdkName="Python 3.3.3 (C:/SDK/Python3/python.exe)" jdkType="Python SDK" />
7+
<orderEntry type="sourceFolder" forTests="false" />
8+
</component>
9+
<component name="PyDocumentationSettings">
10+
<option name="myDocStringFormat" value="Plain" />
11+
</component>
12+
<component name="TestRunnerService">
13+
<option name="projectConfiguration" value="Unittests" />
14+
<option name="PROJECT_TEST_RUNNER" value="Unittests" />
15+
</component>
16+
</module>
17+

0 commit comments

Comments
 (0)