File tree 6 files changed +96
-0
lines changed
6 files changed +96
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__ /
3
+ * .py [cod ]
4
+
5
+ # C extensions
6
+ * .so
7
+
8
+ # Distribution / packaging
9
+ .Python
10
+ env /
11
+ build /
12
+ develop-eggs /
13
+ dist /
14
+ eggs /
15
+ lib /
16
+ lib64 /
17
+ parts /
18
+ sdist /
19
+ var /
20
+ * .egg-info /
21
+ .installed.cfg
22
+ * .egg
23
+
24
+ # PyInstaller
25
+ # Usually these files are written by a python script from a template
26
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
27
+ * .manifest
28
+ * .spec
29
+
30
+ # Installer logs
31
+ pip-log.txt
32
+ pip-delete-this-directory.txt
33
+
34
+ # Unit test / coverage reports
35
+ htmlcov /
36
+ .tox /
37
+ .coverage
38
+ .cache
39
+ nosetests.xml
40
+ coverage.xml
41
+
42
+ # Translations
43
+ * .mo
44
+ * .pot
45
+
46
+ # Django stuff:
47
+ * .log
48
+
49
+ # Sphinx documentation
50
+ docs /_build /
51
+
52
+ # PyBuilder
53
+ target /
54
+
55
+ .DS_Store
56
+ .AppleDouble
57
+ .LSOverride
58
+
59
+ # Icon must end with two \r
60
+ Icon
61
+
62
+
63
+ # Thumbnails
64
+ ._ *
65
+
66
+ # Files that might appear on external disk
67
+ .Spotlight-V100
68
+ .Trashes
69
+
70
+ # Directories potentially created on remote AFP share
71
+ .AppleDB
72
+ .AppleDesktop
73
+ Network Trash Folder
74
+ Temporary Items
75
+ .apdisk
76
+ # workspace files are user-specific
77
+ * .sublime-workspace
78
+
79
+ # project files should be checked into the repository, unless a significant
80
+ # proportion of contributors will probably not be using SublimeText
81
+ # *.sublime-project
82
+
83
+ # sftp configuration file
84
+ sftp-config.json
Original file line number Diff line number Diff line change
1
+ # file GENERATED by distutils, do NOT edit
2
+ README.txt
3
+ setup.py
4
+ presser/__init__.py
Original file line number Diff line number Diff line change
1
+ from distutils .core import setup
2
+
3
+ setup (name = 'Presser' ,
4
+ version = '0.1dev' ,
5
+ packages = ['presser' ,],
6
+ license = 'GNU GPL v3.0' ,
7
+ long_description = open ('README.txt' ).read (),
8
+ )
You can’t perform that action at this time.
0 commit comments