kopipasta 0.19.0__tar.gz → 0.20.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.
Potentially problematic release.
This version of kopipasta might be problematic. Click here for more details.
- {kopipasta-0.19.0/kopipasta.egg-info → kopipasta-0.20.0}/PKG-INFO +2 -1
- {kopipasta-0.19.0 → kopipasta-0.20.0/kopipasta.egg-info}/PKG-INFO +2 -1
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta.egg-info/requires.txt +1 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/setup.py +8 -6
- {kopipasta-0.19.0 → kopipasta-0.20.0}/LICENSE +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/MANIFEST.in +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/README.md +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta/__init__.py +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta/main.py +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta.egg-info/SOURCES.txt +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta.egg-info/dependency_links.txt +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta.egg-info/entry_points.txt +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/kopipasta.egg-info/top_level.txt +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/requirements.txt +0 -0
- {kopipasta-0.19.0 → kopipasta-0.20.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: kopipasta
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.0
|
|
4
4
|
Summary: A CLI tool to generate prompts with project structure and file contents
|
|
5
5
|
Home-page: https://github.com/mkorpela/kopipasta
|
|
6
6
|
Author: Mikko Korpela
|
|
@@ -21,6 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: pyperclip==1.9.0
|
|
23
23
|
Requires-Dist: requests==2.32.3
|
|
24
|
+
Requires-Dist: Pygments==2.18.0
|
|
24
25
|
|
|
25
26
|
# kopipasta
|
|
26
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: kopipasta
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.0
|
|
4
4
|
Summary: A CLI tool to generate prompts with project structure and file contents
|
|
5
5
|
Home-page: https://github.com/mkorpela/kopipasta
|
|
6
6
|
Author: Mikko Korpela
|
|
@@ -21,6 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: pyperclip==1.9.0
|
|
23
23
|
Requires-Dist: requests==2.32.3
|
|
24
|
+
Requires-Dist: Pygments==2.18.0
|
|
24
25
|
|
|
25
26
|
# kopipasta
|
|
26
27
|
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
|
|
3
|
+
# Read the contents of README.md
|
|
3
4
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
5
|
long_description = fh.read()
|
|
5
6
|
|
|
7
|
+
# Read the contents of requirements.txt
|
|
8
|
+
with open("requirements.txt", "r", encoding="utf-8") as f:
|
|
9
|
+
requirements = f.read().splitlines()
|
|
10
|
+
|
|
6
11
|
setup(
|
|
7
12
|
name="kopipasta",
|
|
8
|
-
version="0.
|
|
13
|
+
version="0.20.0",
|
|
9
14
|
author="Mikko Korpela",
|
|
10
15
|
author_email="mikko.korpela@gmail.com",
|
|
11
16
|
description="A CLI tool to generate prompts with project structure and file contents",
|
|
@@ -13,10 +18,7 @@ setup(
|
|
|
13
18
|
long_description_content_type="text/markdown",
|
|
14
19
|
url="https://github.com/mkorpela/kopipasta",
|
|
15
20
|
packages=find_packages(),
|
|
16
|
-
install_requires=
|
|
17
|
-
"pyperclip==1.9.0",
|
|
18
|
-
"requests==2.32.3",
|
|
19
|
-
],
|
|
21
|
+
install_requires=requirements,
|
|
20
22
|
classifiers=[
|
|
21
23
|
"Development Status :: 3 - Alpha",
|
|
22
24
|
"Intended Audience :: Developers",
|
|
@@ -36,4 +38,4 @@ setup(
|
|
|
36
38
|
"kopipasta=kopipasta.main:main",
|
|
37
39
|
],
|
|
38
40
|
},
|
|
39
|
-
)
|
|
41
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|