cursor-boilerplate 0.1.0__tar.gz → 0.1.1__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.
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/PKG-INFO +34 -16
- cursor_boilerplate-0.1.1/README.md +57 -0
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate.egg-info/PKG-INFO +34 -16
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate.egg-info/SOURCES.txt +1 -1
- cursor_boilerplate-0.1.1/cursor_boilerplate.egg-info/entry_points.txt +2 -0
- cursor_boilerplate-0.1.1/cursor_boilerplate.egg-info/requires.txt +3 -0
- cursor_boilerplate-0.1.1/pyproject.toml +32 -0
- cursor_boilerplate-0.1.0/README.md +0 -31
- cursor_boilerplate-0.1.0/cursor_boilerplate.egg-info/entry_points.txt +0 -2
- cursor_boilerplate-0.1.0/cursor_boilerplate.egg-info/requires.txt +0 -1
- cursor_boilerplate-0.1.0/setup.py +0 -27
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate/__init__.py +0 -0
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate/cli.py +0 -0
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate.egg-info/dependency_links.txt +0 -0
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate.egg-info/top_level.txt +0 -0
- {cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/setup.cfg +0 -0
@@ -1,25 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cursor-boilerplate
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A boilerplate project for Cursor IDE
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/cursor-boilerplate
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
10
9
|
Classifier: Operating System :: OS Independent
|
11
10
|
Requires-Python: >=3.6
|
12
11
|
Description-Content-Type: text/markdown
|
13
12
|
Requires-Dist: click
|
14
|
-
|
15
|
-
|
16
|
-
Dynamic: classifier
|
17
|
-
Dynamic: description
|
18
|
-
Dynamic: description-content-type
|
19
|
-
Dynamic: home-page
|
20
|
-
Dynamic: requires-dist
|
21
|
-
Dynamic: requires-python
|
22
|
-
Dynamic: summary
|
13
|
+
Requires-Dist: build
|
14
|
+
Requires-Dist: twine
|
23
15
|
|
24
16
|
# Cursor Boilerplate
|
25
17
|
|
@@ -34,13 +26,33 @@ pip install cursor-boilerplate
|
|
34
26
|
## 사용 방법
|
35
27
|
|
36
28
|
```bash
|
37
|
-
|
29
|
+
cursor-boilerplate my-project-name
|
38
30
|
```
|
39
31
|
|
40
32
|
또는 특정 경로에 프로젝트를 생성하려면:
|
41
33
|
|
42
34
|
```bash
|
43
|
-
|
35
|
+
cursor-boilerplate my-project-name --path /path/to/directory
|
36
|
+
```
|
37
|
+
|
38
|
+
## 개발자 가이드
|
39
|
+
|
40
|
+
### 개발 환경 설정
|
41
|
+
|
42
|
+
```bash
|
43
|
+
uv pip install -e .
|
44
|
+
```
|
45
|
+
|
46
|
+
### 패키지 빌드 및 배포
|
47
|
+
|
48
|
+
1. 패키지 빌드:
|
49
|
+
```bash
|
50
|
+
python -m build
|
51
|
+
```
|
52
|
+
|
53
|
+
2. PyPI에 업로드:
|
54
|
+
```bash
|
55
|
+
twine upload dist/*
|
44
56
|
```
|
45
57
|
|
46
58
|
## 기능
|
@@ -49,6 +61,12 @@ uvx my-project-name --path /path/to/directory
|
|
49
61
|
- .cursor 디렉토리 및 파일 자동 복사
|
50
62
|
- 사용자 지정 경로 지원
|
51
63
|
|
64
|
+
## 의존성
|
65
|
+
|
66
|
+
- click: CLI 인터페이스 구현
|
67
|
+
- build: 패키지 빌드
|
68
|
+
- twine: PyPI 업로드
|
69
|
+
|
52
70
|
## 라이센스
|
53
71
|
|
54
72
|
MIT
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# Cursor Boilerplate
|
2
|
+
|
3
|
+
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다.
|
4
|
+
|
5
|
+
## 설치 방법
|
6
|
+
|
7
|
+
```bash
|
8
|
+
pip install cursor-boilerplate
|
9
|
+
```
|
10
|
+
|
11
|
+
## 사용 방법
|
12
|
+
|
13
|
+
```bash
|
14
|
+
cursor-boilerplate my-project-name
|
15
|
+
```
|
16
|
+
|
17
|
+
또는 특정 경로에 프로젝트를 생성하려면:
|
18
|
+
|
19
|
+
```bash
|
20
|
+
cursor-boilerplate my-project-name --path /path/to/directory
|
21
|
+
```
|
22
|
+
|
23
|
+
## 개발자 가이드
|
24
|
+
|
25
|
+
### 개발 환경 설정
|
26
|
+
|
27
|
+
```bash
|
28
|
+
uv pip install -e .
|
29
|
+
```
|
30
|
+
|
31
|
+
### 패키지 빌드 및 배포
|
32
|
+
|
33
|
+
1. 패키지 빌드:
|
34
|
+
```bash
|
35
|
+
python -m build
|
36
|
+
```
|
37
|
+
|
38
|
+
2. PyPI에 업로드:
|
39
|
+
```bash
|
40
|
+
twine upload dist/*
|
41
|
+
```
|
42
|
+
|
43
|
+
## 기능
|
44
|
+
|
45
|
+
- 새로운 프로젝트 디렉토리 생성
|
46
|
+
- .cursor 디렉토리 및 파일 자동 복사
|
47
|
+
- 사용자 지정 경로 지원
|
48
|
+
|
49
|
+
## 의존성
|
50
|
+
|
51
|
+
- click: CLI 인터페이스 구현
|
52
|
+
- build: 패키지 빌드
|
53
|
+
- twine: PyPI 업로드
|
54
|
+
|
55
|
+
## 라이센스
|
56
|
+
|
57
|
+
MIT
|
@@ -1,25 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cursor-boilerplate
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A boilerplate project for Cursor IDE
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/cursor-boilerplate
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
10
9
|
Classifier: Operating System :: OS Independent
|
11
10
|
Requires-Python: >=3.6
|
12
11
|
Description-Content-Type: text/markdown
|
13
12
|
Requires-Dist: click
|
14
|
-
|
15
|
-
|
16
|
-
Dynamic: classifier
|
17
|
-
Dynamic: description
|
18
|
-
Dynamic: description-content-type
|
19
|
-
Dynamic: home-page
|
20
|
-
Dynamic: requires-dist
|
21
|
-
Dynamic: requires-python
|
22
|
-
Dynamic: summary
|
13
|
+
Requires-Dist: build
|
14
|
+
Requires-Dist: twine
|
23
15
|
|
24
16
|
# Cursor Boilerplate
|
25
17
|
|
@@ -34,13 +26,33 @@ pip install cursor-boilerplate
|
|
34
26
|
## 사용 방법
|
35
27
|
|
36
28
|
```bash
|
37
|
-
|
29
|
+
cursor-boilerplate my-project-name
|
38
30
|
```
|
39
31
|
|
40
32
|
또는 특정 경로에 프로젝트를 생성하려면:
|
41
33
|
|
42
34
|
```bash
|
43
|
-
|
35
|
+
cursor-boilerplate my-project-name --path /path/to/directory
|
36
|
+
```
|
37
|
+
|
38
|
+
## 개발자 가이드
|
39
|
+
|
40
|
+
### 개발 환경 설정
|
41
|
+
|
42
|
+
```bash
|
43
|
+
uv pip install -e .
|
44
|
+
```
|
45
|
+
|
46
|
+
### 패키지 빌드 및 배포
|
47
|
+
|
48
|
+
1. 패키지 빌드:
|
49
|
+
```bash
|
50
|
+
python -m build
|
51
|
+
```
|
52
|
+
|
53
|
+
2. PyPI에 업로드:
|
54
|
+
```bash
|
55
|
+
twine upload dist/*
|
44
56
|
```
|
45
57
|
|
46
58
|
## 기능
|
@@ -49,6 +61,12 @@ uvx my-project-name --path /path/to/directory
|
|
49
61
|
- .cursor 디렉토리 및 파일 자동 복사
|
50
62
|
- 사용자 지정 경로 지원
|
51
63
|
|
64
|
+
## 의존성
|
65
|
+
|
66
|
+
- click: CLI 인터페이스 구현
|
67
|
+
- build: 패키지 빌드
|
68
|
+
- twine: PyPI 업로드
|
69
|
+
|
52
70
|
## 라이센스
|
53
71
|
|
54
72
|
MIT
|
@@ -0,0 +1,32 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=61.0", "twine", "wheel", "build"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "cursor-boilerplate"
|
7
|
+
version = "0.1.1"
|
8
|
+
description = "A boilerplate project for Cursor IDE"
|
9
|
+
readme = "README.md"
|
10
|
+
requires-python = ">=3.6"
|
11
|
+
license = { text = "MIT" }
|
12
|
+
authors = [
|
13
|
+
{ name = "Your Name", email = "your.email@example.com" }
|
14
|
+
]
|
15
|
+
dependencies = [
|
16
|
+
"click",
|
17
|
+
"build",
|
18
|
+
"twine",
|
19
|
+
]
|
20
|
+
classifiers = [
|
21
|
+
"Programming Language :: Python :: 3",
|
22
|
+
"Operating System :: OS Independent",
|
23
|
+
]
|
24
|
+
|
25
|
+
[project.scripts]
|
26
|
+
cursor-boilerplate = "cursor_boilerplate.cli:main"
|
27
|
+
|
28
|
+
[project.urls]
|
29
|
+
Homepage = "https://github.com/yourusername/cursor-boilerplate"
|
30
|
+
|
31
|
+
[tool.setuptools]
|
32
|
+
packages = ["cursor_boilerplate"]
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# Cursor Boilerplate
|
2
|
-
|
3
|
-
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다.
|
4
|
-
|
5
|
-
## 설치 방법
|
6
|
-
|
7
|
-
```bash
|
8
|
-
pip install cursor-boilerplate
|
9
|
-
```
|
10
|
-
|
11
|
-
## 사용 방법
|
12
|
-
|
13
|
-
```bash
|
14
|
-
uvx my-project-name
|
15
|
-
```
|
16
|
-
|
17
|
-
또는 특정 경로에 프로젝트를 생성하려면:
|
18
|
-
|
19
|
-
```bash
|
20
|
-
uvx my-project-name --path /path/to/directory
|
21
|
-
```
|
22
|
-
|
23
|
-
## 기능
|
24
|
-
|
25
|
-
- 새로운 프로젝트 디렉토리 생성
|
26
|
-
- .cursor 디렉토리 및 파일 자동 복사
|
27
|
-
- 사용자 지정 경로 지원
|
28
|
-
|
29
|
-
## 라이센스
|
30
|
-
|
31
|
-
MIT
|
@@ -1 +0,0 @@
|
|
1
|
-
click
|
@@ -1,27 +0,0 @@
|
|
1
|
-
from setuptools import setup, find_packages
|
2
|
-
|
3
|
-
setup(
|
4
|
-
name="cursor-boilerplate",
|
5
|
-
version="0.1.0",
|
6
|
-
packages=find_packages(),
|
7
|
-
install_requires=[
|
8
|
-
"click",
|
9
|
-
],
|
10
|
-
entry_points={
|
11
|
-
"console_scripts": [
|
12
|
-
"uvx=cursor_boilerplate.cli:main",
|
13
|
-
],
|
14
|
-
},
|
15
|
-
author="Your Name",
|
16
|
-
author_email="your.email@example.com",
|
17
|
-
description="A boilerplate project for Cursor IDE",
|
18
|
-
long_description=open("README.md").read(),
|
19
|
-
long_description_content_type="text/markdown",
|
20
|
-
url="https://github.com/yourusername/cursor-boilerplate",
|
21
|
-
classifiers=[
|
22
|
-
"Programming Language :: Python :: 3",
|
23
|
-
"License :: OSI Approved :: MIT License",
|
24
|
-
"Operating System :: OS Independent",
|
25
|
-
],
|
26
|
-
python_requires=">=3.6",
|
27
|
-
)
|
File without changes
|
File without changes
|
File without changes
|
{cursor_boilerplate-0.1.0 → cursor_boilerplate-0.1.1}/cursor_boilerplate.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|