cursor-boilerplate 0.1.2__tar.gz → 0.3.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.
- cursor_boilerplate-0.3.0/PKG-INFO +91 -0
- cursor_boilerplate-0.3.0/README.md +76 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate/cli.py +10 -12
- cursor_boilerplate-0.3.0/cursor_boilerplate.egg-info/PKG-INFO +91 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/pyproject.toml +7 -2
- cursor_boilerplate-0.1.2/PKG-INFO +0 -72
- cursor_boilerplate-0.1.2/README.md +0 -57
- cursor_boilerplate-0.1.2/cursor_boilerplate.egg-info/PKG-INFO +0 -72
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate/__init__.py +0 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/SOURCES.txt +0 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/dependency_links.txt +0 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/entry_points.txt +0 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/requires.txt +0 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/top_level.txt +0 -0
- {cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/setup.cfg +0 -0
@@ -0,0 +1,91 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: cursor-boilerplate
|
3
|
+
Version: 0.3.0
|
4
|
+
Summary: A boilerplate project for Cursor IDE
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/cursor-boilerplate
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Operating System :: OS Independent
|
10
|
+
Requires-Python: >=3.6
|
11
|
+
Description-Content-Type: text/markdown
|
12
|
+
Requires-Dist: click
|
13
|
+
Requires-Dist: build
|
14
|
+
Requires-Dist: twine
|
15
|
+
|
16
|
+
# Cursor Boilerplate
|
17
|
+
|
18
|
+
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다. 이 패키지는 새로운 Cursor IDE 프로젝트를 쉽게 생성할 수 있도록 도와줍니다.
|
19
|
+
|
20
|
+
## 설치하기
|
21
|
+
|
22
|
+
```bash
|
23
|
+
uv pip install cursor-boilerplate
|
24
|
+
```
|
25
|
+
|
26
|
+
## 사용하기
|
27
|
+
|
28
|
+
### 기본 사용법
|
29
|
+
|
30
|
+
새로운 프로젝트를 생성하려면:
|
31
|
+
|
32
|
+
```bash
|
33
|
+
cursor-boilerplate my-project-name
|
34
|
+
```
|
35
|
+
|
36
|
+
이 명령어는 현재 디렉토리에 `my-project-name` 폴더를 생성하고, 필요한 `.cursor` 설정 파일들을 자동으로 복사합니다.
|
37
|
+
|
38
|
+
### 특정 경로에 프로젝트 생성하기
|
39
|
+
|
40
|
+
원하는 경로에 프로젝트를 생성하려면:
|
41
|
+
|
42
|
+
```bash
|
43
|
+
cursor-boilerplate my-project-name --path /원하는/경로
|
44
|
+
```
|
45
|
+
|
46
|
+
예시:
|
47
|
+
```bash
|
48
|
+
cursor-boilerplate my-project --path ~/projects/
|
49
|
+
```
|
50
|
+
|
51
|
+
## 기능
|
52
|
+
|
53
|
+
- 새로운 프로젝트 디렉토리 자동 생성
|
54
|
+
- Cursor IDE 설정 파일 자동 복사
|
55
|
+
- 원하는 경로에 프로젝트 생성 가능
|
56
|
+
- 간단한 CLI 인터페이스
|
57
|
+
|
58
|
+
## 라이센스
|
59
|
+
|
60
|
+
MIT License
|
61
|
+
|
62
|
+
## 개발자 가이드
|
63
|
+
|
64
|
+
### 개발 환경 설정
|
65
|
+
|
66
|
+
```bash
|
67
|
+
uv pip install -e .
|
68
|
+
```
|
69
|
+
|
70
|
+
### 패키지 빌드 및 배포
|
71
|
+
|
72
|
+
1. 기존 빌드 파일 삭제:
|
73
|
+
```bash
|
74
|
+
rm -rf dist/ build/ cursor_boilerplate.egg-info/
|
75
|
+
```
|
76
|
+
|
77
|
+
2. 패키지 빌드 및 PyPI 업로드:
|
78
|
+
```bash
|
79
|
+
python -m build
|
80
|
+
twine upload dist/*
|
81
|
+
```
|
82
|
+
|
83
|
+
## 의존성
|
84
|
+
|
85
|
+
- click: CLI 인터페이스 구현
|
86
|
+
- build: 패키지 빌드
|
87
|
+
- twine: PyPI 업로드
|
88
|
+
|
89
|
+
## 라이센스
|
90
|
+
|
91
|
+
MIT
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# Cursor Boilerplate
|
2
|
+
|
3
|
+
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다. 이 패키지는 새로운 Cursor IDE 프로젝트를 쉽게 생성할 수 있도록 도와줍니다.
|
4
|
+
|
5
|
+
## 설치하기
|
6
|
+
|
7
|
+
```bash
|
8
|
+
uv pip install cursor-boilerplate
|
9
|
+
```
|
10
|
+
|
11
|
+
## 사용하기
|
12
|
+
|
13
|
+
### 기본 사용법
|
14
|
+
|
15
|
+
새로운 프로젝트를 생성하려면:
|
16
|
+
|
17
|
+
```bash
|
18
|
+
cursor-boilerplate my-project-name
|
19
|
+
```
|
20
|
+
|
21
|
+
이 명령어는 현재 디렉토리에 `my-project-name` 폴더를 생성하고, 필요한 `.cursor` 설정 파일들을 자동으로 복사합니다.
|
22
|
+
|
23
|
+
### 특정 경로에 프로젝트 생성하기
|
24
|
+
|
25
|
+
원하는 경로에 프로젝트를 생성하려면:
|
26
|
+
|
27
|
+
```bash
|
28
|
+
cursor-boilerplate my-project-name --path /원하는/경로
|
29
|
+
```
|
30
|
+
|
31
|
+
예시:
|
32
|
+
```bash
|
33
|
+
cursor-boilerplate my-project --path ~/projects/
|
34
|
+
```
|
35
|
+
|
36
|
+
## 기능
|
37
|
+
|
38
|
+
- 새로운 프로젝트 디렉토리 자동 생성
|
39
|
+
- Cursor IDE 설정 파일 자동 복사
|
40
|
+
- 원하는 경로에 프로젝트 생성 가능
|
41
|
+
- 간단한 CLI 인터페이스
|
42
|
+
|
43
|
+
## 라이센스
|
44
|
+
|
45
|
+
MIT License
|
46
|
+
|
47
|
+
## 개발자 가이드
|
48
|
+
|
49
|
+
### 개발 환경 설정
|
50
|
+
|
51
|
+
```bash
|
52
|
+
uv pip install -e .
|
53
|
+
```
|
54
|
+
|
55
|
+
### 패키지 빌드 및 배포
|
56
|
+
|
57
|
+
1. 기존 빌드 파일 삭제:
|
58
|
+
```bash
|
59
|
+
rm -rf dist/ build/ cursor_boilerplate.egg-info/
|
60
|
+
```
|
61
|
+
|
62
|
+
2. 패키지 빌드 및 PyPI 업로드:
|
63
|
+
```bash
|
64
|
+
python -m build
|
65
|
+
twine upload dist/*
|
66
|
+
```
|
67
|
+
|
68
|
+
## 의존성
|
69
|
+
|
70
|
+
- click: CLI 인터페이스 구현
|
71
|
+
- build: 패키지 빌드
|
72
|
+
- twine: PyPI 업로드
|
73
|
+
|
74
|
+
## 라이센스
|
75
|
+
|
76
|
+
MIT
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import os
|
2
2
|
import shutil
|
3
3
|
import click
|
4
|
-
import
|
4
|
+
import importlib.resources
|
5
5
|
|
6
6
|
@click.command()
|
7
7
|
@click.argument('project_name')
|
@@ -18,17 +18,15 @@ def main(project_name, path):
|
|
18
18
|
os.makedirs(cursor_dir, exist_ok=True)
|
19
19
|
|
20
20
|
# 패키지의 .cursor 디렉토리 경로 가져오기
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
elif os.path.isdir(src):
|
31
|
-
shutil.copytree(src, dst)
|
21
|
+
with importlib.resources.path('cursor_boilerplate', '.cursor') as current_cursor_dir:
|
22
|
+
# 현재 디렉토리의 .cursor 파일들을 복사
|
23
|
+
for item in os.listdir(current_cursor_dir):
|
24
|
+
src = os.path.join(current_cursor_dir, item)
|
25
|
+
dst = os.path.join(cursor_dir, item)
|
26
|
+
if os.path.isfile(src):
|
27
|
+
shutil.copy2(src, dst)
|
28
|
+
elif os.path.isdir(src):
|
29
|
+
shutil.copytree(src, dst)
|
32
30
|
|
33
31
|
click.echo(f"프로젝트 '{project_name}'이 성공적으로 생성되었습니다.")
|
34
32
|
click.echo(f"경로: {os.path.abspath(project_path)}")
|
@@ -0,0 +1,91 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: cursor-boilerplate
|
3
|
+
Version: 0.3.0
|
4
|
+
Summary: A boilerplate project for Cursor IDE
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/cursor-boilerplate
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Operating System :: OS Independent
|
10
|
+
Requires-Python: >=3.6
|
11
|
+
Description-Content-Type: text/markdown
|
12
|
+
Requires-Dist: click
|
13
|
+
Requires-Dist: build
|
14
|
+
Requires-Dist: twine
|
15
|
+
|
16
|
+
# Cursor Boilerplate
|
17
|
+
|
18
|
+
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다. 이 패키지는 새로운 Cursor IDE 프로젝트를 쉽게 생성할 수 있도록 도와줍니다.
|
19
|
+
|
20
|
+
## 설치하기
|
21
|
+
|
22
|
+
```bash
|
23
|
+
uv pip install cursor-boilerplate
|
24
|
+
```
|
25
|
+
|
26
|
+
## 사용하기
|
27
|
+
|
28
|
+
### 기본 사용법
|
29
|
+
|
30
|
+
새로운 프로젝트를 생성하려면:
|
31
|
+
|
32
|
+
```bash
|
33
|
+
cursor-boilerplate my-project-name
|
34
|
+
```
|
35
|
+
|
36
|
+
이 명령어는 현재 디렉토리에 `my-project-name` 폴더를 생성하고, 필요한 `.cursor` 설정 파일들을 자동으로 복사합니다.
|
37
|
+
|
38
|
+
### 특정 경로에 프로젝트 생성하기
|
39
|
+
|
40
|
+
원하는 경로에 프로젝트를 생성하려면:
|
41
|
+
|
42
|
+
```bash
|
43
|
+
cursor-boilerplate my-project-name --path /원하는/경로
|
44
|
+
```
|
45
|
+
|
46
|
+
예시:
|
47
|
+
```bash
|
48
|
+
cursor-boilerplate my-project --path ~/projects/
|
49
|
+
```
|
50
|
+
|
51
|
+
## 기능
|
52
|
+
|
53
|
+
- 새로운 프로젝트 디렉토리 자동 생성
|
54
|
+
- Cursor IDE 설정 파일 자동 복사
|
55
|
+
- 원하는 경로에 프로젝트 생성 가능
|
56
|
+
- 간단한 CLI 인터페이스
|
57
|
+
|
58
|
+
## 라이센스
|
59
|
+
|
60
|
+
MIT License
|
61
|
+
|
62
|
+
## 개발자 가이드
|
63
|
+
|
64
|
+
### 개발 환경 설정
|
65
|
+
|
66
|
+
```bash
|
67
|
+
uv pip install -e .
|
68
|
+
```
|
69
|
+
|
70
|
+
### 패키지 빌드 및 배포
|
71
|
+
|
72
|
+
1. 기존 빌드 파일 삭제:
|
73
|
+
```bash
|
74
|
+
rm -rf dist/ build/ cursor_boilerplate.egg-info/
|
75
|
+
```
|
76
|
+
|
77
|
+
2. 패키지 빌드 및 PyPI 업로드:
|
78
|
+
```bash
|
79
|
+
python -m build
|
80
|
+
twine upload dist/*
|
81
|
+
```
|
82
|
+
|
83
|
+
## 의존성
|
84
|
+
|
85
|
+
- click: CLI 인터페이스 구현
|
86
|
+
- build: 패키지 빌드
|
87
|
+
- twine: PyPI 업로드
|
88
|
+
|
89
|
+
## 라이센스
|
90
|
+
|
91
|
+
MIT
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "cursor-boilerplate"
|
7
|
-
version = "0.
|
7
|
+
version = "0.3.0"
|
8
8
|
description = "A boilerplate project for Cursor IDE"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.6"
|
@@ -33,4 +33,9 @@ packages = ["cursor_boilerplate"]
|
|
33
33
|
include-package-data = true
|
34
34
|
|
35
35
|
[tool.setuptools.package-data]
|
36
|
-
cursor_boilerplate = [".cursor/*"]
|
36
|
+
cursor_boilerplate = [".cursor/*"]
|
37
|
+
|
38
|
+
[tool.twine]
|
39
|
+
repository = "pypi"
|
40
|
+
username = "__token__"
|
41
|
+
password = "pypi-AgEIcHlwaS5vcmcCJGFmZmYwODc4LTJhMmEtNDZlNC1iZWNlLTAwNjUwZjJjZjJmNgACKlszLCI1YmY4YmY1ZC1iZDFhLTRmZDUtOGNjZi0yMzk3NmVjNGE2ZDEiXQAABiAM_Z4Ym_qKQge_-JSTmvtzdKdzmpYkPfng7_ciWxIAzw"
|
@@ -1,72 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: cursor-boilerplate
|
3
|
-
Version: 0.1.2
|
4
|
-
Summary: A boilerplate project for Cursor IDE
|
5
|
-
Author-email: Your Name <your.email@example.com>
|
6
|
-
License: MIT
|
7
|
-
Project-URL: Homepage, https://github.com/yourusername/cursor-boilerplate
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Operating System :: OS Independent
|
10
|
-
Requires-Python: >=3.6
|
11
|
-
Description-Content-Type: text/markdown
|
12
|
-
Requires-Dist: click
|
13
|
-
Requires-Dist: build
|
14
|
-
Requires-Dist: twine
|
15
|
-
|
16
|
-
# Cursor Boilerplate
|
17
|
-
|
18
|
-
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다.
|
19
|
-
|
20
|
-
## 설치 방법
|
21
|
-
|
22
|
-
```bash
|
23
|
-
pip install cursor-boilerplate
|
24
|
-
```
|
25
|
-
|
26
|
-
## 사용 방법
|
27
|
-
|
28
|
-
```bash
|
29
|
-
cursor-boilerplate my-project-name
|
30
|
-
```
|
31
|
-
|
32
|
-
또는 특정 경로에 프로젝트를 생성하려면:
|
33
|
-
|
34
|
-
```bash
|
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/*
|
56
|
-
```
|
57
|
-
|
58
|
-
## 기능
|
59
|
-
|
60
|
-
- 새로운 프로젝트 디렉토리 생성
|
61
|
-
- .cursor 디렉토리 및 파일 자동 복사
|
62
|
-
- 사용자 지정 경로 지원
|
63
|
-
|
64
|
-
## 의존성
|
65
|
-
|
66
|
-
- click: CLI 인터페이스 구현
|
67
|
-
- build: 패키지 빌드
|
68
|
-
- twine: PyPI 업로드
|
69
|
-
|
70
|
-
## 라이센스
|
71
|
-
|
72
|
-
MIT
|
@@ -1,57 +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
|
-
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,72 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: cursor-boilerplate
|
3
|
-
Version: 0.1.2
|
4
|
-
Summary: A boilerplate project for Cursor IDE
|
5
|
-
Author-email: Your Name <your.email@example.com>
|
6
|
-
License: MIT
|
7
|
-
Project-URL: Homepage, https://github.com/yourusername/cursor-boilerplate
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Operating System :: OS Independent
|
10
|
-
Requires-Python: >=3.6
|
11
|
-
Description-Content-Type: text/markdown
|
12
|
-
Requires-Dist: click
|
13
|
-
Requires-Dist: build
|
14
|
-
Requires-Dist: twine
|
15
|
-
|
16
|
-
# Cursor Boilerplate
|
17
|
-
|
18
|
-
Cursor IDE를 위한 보일러플레이트 프로젝트 생성기입니다.
|
19
|
-
|
20
|
-
## 설치 방법
|
21
|
-
|
22
|
-
```bash
|
23
|
-
pip install cursor-boilerplate
|
24
|
-
```
|
25
|
-
|
26
|
-
## 사용 방법
|
27
|
-
|
28
|
-
```bash
|
29
|
-
cursor-boilerplate my-project-name
|
30
|
-
```
|
31
|
-
|
32
|
-
또는 특정 경로에 프로젝트를 생성하려면:
|
33
|
-
|
34
|
-
```bash
|
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/*
|
56
|
-
```
|
57
|
-
|
58
|
-
## 기능
|
59
|
-
|
60
|
-
- 새로운 프로젝트 디렉토리 생성
|
61
|
-
- .cursor 디렉토리 및 파일 자동 복사
|
62
|
-
- 사용자 지정 경로 지원
|
63
|
-
|
64
|
-
## 의존성
|
65
|
-
|
66
|
-
- click: CLI 인터페이스 구현
|
67
|
-
- build: 패키지 빌드
|
68
|
-
- twine: PyPI 업로드
|
69
|
-
|
70
|
-
## 라이센스
|
71
|
-
|
72
|
-
MIT
|
File without changes
|
{cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/entry_points.txt
RENAMED
File without changes
|
{cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/requires.txt
RENAMED
File without changes
|
{cursor_boilerplate-0.1.2 → cursor_boilerplate-0.3.0}/cursor_boilerplate.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|