quickcopy 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: quickcopy
3
+ Version: 0.1.0
4
+ Summary: Quick text copy CLI tool
5
+ Requires-Python: >=3.7
6
+ License-File: LICENSE
7
+ Requires-Dist: pyperclip
8
+ Dynamic: license-file
File without changes
@@ -0,0 +1,13 @@
1
+ [project]
2
+ name = "quickcopy"
3
+ version = "0.1.0"
4
+ description = "Quick text copy CLI tool"
5
+ requires-python = ">=3.7"
6
+ dependencies = ["pyperclip"]
7
+
8
+ [project.scripts]
9
+ quickcopy = "quickcopy.main:main"
10
+
11
+ [build-system]
12
+ requires = ["setuptools"]
13
+ build-backend = "setuptools.build_meta"
File without changes
@@ -0,0 +1,114 @@
1
+ import textwrap
2
+
3
+ OPTIONS = {
4
+ 1: textwrap.dedent("""\
5
+
6
+ # ==============================
7
+ # OPTION 1 CONTENT
8
+ # Replace this text later
9
+ # ==============================
10
+
11
+
12
+ """),
13
+
14
+ 2: textwrap.dedent("""\
15
+
16
+ # ==============================
17
+ # OPTION 2 CONTENT
18
+ # Replace this text later
19
+ # ==============================
20
+
21
+
22
+ """),
23
+
24
+ 3: textwrap.dedent("""\
25
+
26
+ # ==============================
27
+ # OPTION 3 CONTENT
28
+ # Replace this text later
29
+ # ==============================
30
+
31
+
32
+ """),
33
+
34
+ 4: textwrap.dedent("""\
35
+
36
+ # ==============================
37
+ # OPTION 4 CONTENT
38
+ # ==============================
39
+
40
+
41
+ """),
42
+
43
+ 5: textwrap.dedent("""\
44
+
45
+ # ==============================
46
+ # OPTION 5 CONTENT
47
+ # ==============================
48
+
49
+
50
+ """),
51
+
52
+ 6: textwrap.dedent("""\
53
+
54
+ # ==============================
55
+ # OPTION 6 CONTENT
56
+ # ==============================
57
+
58
+
59
+ """),
60
+
61
+ 7: textwrap.dedent("""\
62
+
63
+ # ==============================
64
+ # OPTION 7 CONTENT
65
+ # ==============================
66
+
67
+
68
+ """),
69
+
70
+ 8: textwrap.dedent("""\
71
+
72
+ # ==============================
73
+ # OPTION 8 CONTENT
74
+ # ==============================
75
+
76
+
77
+ """),
78
+
79
+ 9: textwrap.dedent("""\
80
+
81
+ # ==============================
82
+ # OPTION 9 CONTENT
83
+ # ==============================
84
+
85
+
86
+ """),
87
+
88
+ 10: textwrap.dedent("""\
89
+
90
+ # ==============================
91
+ # OPTION 10 CONTENT
92
+ # ==============================
93
+
94
+
95
+ """),
96
+
97
+ 11: textwrap.dedent("""\
98
+
99
+ # ==============================
100
+ # OPTION 11 CONTENT
101
+ # ==============================
102
+
103
+
104
+ """),
105
+
106
+ 12: textwrap.dedent("""\
107
+
108
+ # ==============================
109
+ # OPTION 12 CONTENT
110
+ # ==============================
111
+
112
+
113
+ """),
114
+ }
@@ -0,0 +1,16 @@
1
+ import pyperclip
2
+ from .data import OPTIONS
3
+
4
+
5
+ def main():
6
+ try:
7
+ choice = int(input("➜ "))
8
+
9
+ if choice in OPTIONS:
10
+ pyperclip.copy(OPTIONS[choice])
11
+
12
+ except:
13
+ pass
14
+
15
+
16
+
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: quickcopy
3
+ Version: 0.1.0
4
+ Summary: Quick text copy CLI tool
5
+ Requires-Python: >=3.7
6
+ License-File: LICENSE
7
+ Requires-Dist: pyperclip
8
+ Dynamic: license-file
@@ -0,0 +1,12 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ quickcopy/__init__.py
5
+ quickcopy/data.py
6
+ quickcopy/main.py
7
+ quickcopy.egg-info/PKG-INFO
8
+ quickcopy.egg-info/SOURCES.txt
9
+ quickcopy.egg-info/dependency_links.txt
10
+ quickcopy.egg-info/entry_points.txt
11
+ quickcopy.egg-info/requires.txt
12
+ quickcopy.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ quickcopy = quickcopy.main:main
@@ -0,0 +1 @@
1
+ pyperclip
@@ -0,0 +1 @@
1
+ quickcopy
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+