Added PyCharm .idea project.
David Blume

David Blume commited on 2016-08-14 12:24:19
Showing 10 changed files, with 90 additions and 0 deletions.

... ...
@@ -0,0 +1 @@
1
+testpython
0 2
\ No newline at end of file
... ...
@@ -0,0 +1,5 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
+</project>
5
+
... ...
@@ -0,0 +1,13 @@
1
+<component name="InspectionProjectProfileManager">
2
+  <profile version="1.0" is_locked="false">
3
+    <option name="myName" value="Project Default" />
4
+    <option name="myLocal" value="false" />
5
+    <inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
6
+      <option name="ignoredErrors">
7
+        <list>
8
+          <option value="E501" />
9
+        </list>
10
+      </option>
11
+    </inspection_tool>
12
+  </profile>
13
+</component>
0 14
\ No newline at end of file
... ...
@@ -0,0 +1,7 @@
1
+<component name="InspectionProjectProfileManager">
2
+  <settings>
3
+    <option name="PROJECT_PROFILE" />
4
+    <option name="USE_PROJECT_PROFILE" value="false" />
5
+    <version value="1.0" />
6
+  </settings>
7
+</component>
0 8
\ No newline at end of file
... ...
@@ -0,0 +1,29 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="ProjectInspectionProfilesVisibleTreeState">
4
+    <entry key="Project Default">
5
+      <profile-state>
6
+        <expanded-state>
7
+          <State>
8
+            <id />
9
+          </State>
10
+          <State>
11
+            <id>Python</id>
12
+          </State>
13
+        </expanded-state>
14
+        <selected-state>
15
+          <State>
16
+            <id>PyPep8Inspection</id>
17
+          </State>
18
+        </selected-state>
19
+      </profile-state>
20
+    </entry>
21
+  </component>
22
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 2.7.2 (C:\Python27\python.exe)" project-jdk-type="Python SDK" />
23
+  <component name="PyConsoleOptionsProvider">
24
+    <option name="myPythonConsoleState">
25
+      <console-settings />
26
+    </option>
27
+  </component>
28
+</project>
29
+
... ...
@@ -0,0 +1,9 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="ProjectModuleManager">
4
+    <modules>
5
+      <module fileurl="file://$PROJECT_DIR$/.idea/testpython.iml" filepath="$PROJECT_DIR$/.idea/testpython.iml" />
6
+    </modules>
7
+  </component>
8
+</project>
9
+
... ...
@@ -0,0 +1,5 @@
1
+<component name="DependencyValidationManager">
2
+  <state>
3
+    <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
+  </state>
5
+</component>
0 6
\ No newline at end of file
... ...
@@ -0,0 +1,9 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<module type="PYTHON_MODULE" version="4">
3
+  <component name="NewModuleRootManager">
4
+    <content url="file://$MODULE_DIR$" />
5
+    <orderEntry type="inheritedJdk" />
6
+    <orderEntry type="sourceFolder" forTests="false" />
7
+  </component>
8
+</module>
9
+
... ...
@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="VcsDirectoryMappings">
4
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+  </component>
6
+</project>
7
+
... ...
@@ -14,6 +14,11 @@ You can clone from the origin with:
14 14
 
15 15
     git clone ssh://USERNAME@dlma.com/~/git/testpython.git
16 16
 
17
+### PyCharm Notes
18
+
19
+JetBrains suggests [sharing the .idea directory except for workspace.xml and 
20
+tasks.xml](https://intellij-support.jetbrains.com/hc/en-us/articles/206544839).
21
+
17 22
 ### Current Features
18 23
 
19 24
 * Multiple directories for testing build systems and IDEs
20 25