Sfoglia il codice sorgente

Initial pyzo data

master
Dirk Alders 2 anni fa
parent
commit
8814e2c9ff
3 ha cambiato i file con 84 aggiunte e 13 eliminazioni
  1. 79
    13
      .gitignore
  2. 3
    0
      reposinit
  3. 2
    0
      requirements.txt

+ 79
- 13
.gitignore Vedi File

@@ -114,17 +114,83 @@ dmypy.json
114 114
 # Pyre type checker
115 115
 .pyre/
116 116
 
117
-# ---> VirtualEnv
118
-# Virtualenv
119
-# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
120
-.Python
121
-[Bb]in
122
-[Ii]nclude
123
-[Ll]ib
124
-[Ll]ib64
125
-[Ll]ocal
126
-[Ss]cripts
127
-pyvenv.cfg
128
-.venv
129
-pip-selfcheck.json
117
+# ---> Backup
118
+*.bak
119
+*.gho
120
+*.ori
121
+*.orig
122
+*.tmp
123
+
124
+# ---> Linux
125
+*~
126
+
127
+# temporary files which can be created if a process still has a handle open of a deleted file
128
+.fuse_hidden*
129
+
130
+# KDE directory preferences
131
+.directory
132
+
133
+# Linux trash folder which might appear on any partition or disk
134
+.Trash-*
135
+
136
+# .nfs files are created when an open file is removed but is still being accessed
137
+.nfs*
138
+
139
+# ---> Eclipse
140
+
141
+.metadata
142
+bin/
143
+tmp/
144
+*.tmp
145
+*.bak
146
+*.swp
147
+*~.nib
148
+local.properties
149
+.settings/
150
+.loadpath
151
+.recommenders
152
+
153
+# External tool builders
154
+.externalToolBuilders/
155
+
156
+# Locally stored "Eclipse launch configurations"
157
+*.launch
158
+
159
+# PyDev specific (Python IDE for Eclipse)
160
+*.pydevproject
161
+
162
+# CDT-specific (C/C++ Development Tooling)
163
+.cproject
164
+
165
+# CDT- autotools
166
+.autotools
167
+
168
+# Java annotation processor (APT)
169
+.factorypath
170
+
171
+# PDT-specific (PHP Development Tools)
172
+.buildpath
173
+
174
+# sbteclipse plugin
175
+.target
176
+
177
+# Tern plugin
178
+.tern-project
179
+
180
+# TeXlipse plugin
181
+.texlipse
182
+
183
+# STS (Spring Tool Suite)
184
+.springBeans
185
+
186
+# Code Recommenders
187
+.recommenders/
188
+
189
+# Annotation Processing
190
+.apt_generated/
191
+
192
+# Scala IDE specific (Scala & Java development for Eclipse)
193
+.cache-main
194
+.scala_dependencies
195
+.worksheet
130 196
 

+ 3
- 0
reposinit Vedi File

@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+#
3
+mkvenv

+ 2
- 0
requirements.txt Vedi File

@@ -0,0 +1,2 @@
1
+pyqt5
2
+pyzo

Loading…
Annulla
Salva