Skip to content

Commit c33a997

Browse files
committed
0.0.21
change readme
1 parent 7a12a75 commit c33a997

7 files changed

+11
-12
lines changed

DansonGo_5.egg-info/PKG-INFO

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: DansonGo-5
3-
Version: 0.0.2
3+
Version: 0.0.21
44
Summary: A simple module for generating a bunch of SOPs for different schools.
55
Home-page: https://github.com/gen-li/SOP_GEN
66
Author: Gen Li
@@ -45,22 +45,21 @@ Description: # Statement of Purpose (SOP) Generator -- docx version (DansonGo 5)
4545

4646
```python
4747
from SOP_GEN.GEN_SOP import GEN_SOP
48+
import os
4849

49-
school_list = "~/school_list.xlsx"
50-
SOP_temp_file = "~/SOP_template.docx"
50+
# Initial parameters
51+
school_list = "~/school_list.xlsx" # The excel file path of your school and program list
52+
SOP_temp_file = "~/SOP_template.docx" # The docx file path of your SOP template.
53+
School_var = "School" # The column name where school names are saved in your school list.
54+
Program_var = "Program" # The column name where program names are saved in your school list.
55+
output_path = os.getcwd() # Output path where you want to save your output files.
5156

57+
# Generate SOPs
5258
GEN_SOP(school_list,SOP_temp_file,School_var,Program_var,output_path).gen_sop()
53-
```
54-
55-
school_list : The excel file path where the list of schools and programs is saved.
5659

57-
SOP_temp_file : The docx file path of your SOP template.
58-
59-
School_var : The column name where the school name is saved in your school list. The default value is "School".
60+
```
6061

61-
Program_var : The column name where the program info is saved in your school list. The default value is "Program".
6262

63-
output_path : Output path where you want to save your output files. The default value is the current working directory.
6463

6564

6665

dist/.DS_Store

6 KB
Binary file not shown.

dist/DansonGo 5-0.0.2.tar.gz

-2.91 KB
Binary file not shown.

dist/DansonGo 5-0.0.21.tar.gz

2.9 KB
Binary file not shown.
-3.34 KB
Binary file not shown.
3.31 KB
Binary file not shown.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="DansonGo 5", # Replace with your own username
8-
version="0.0.2",
8+
version="0.0.21",
99
author="Gen Li",
1010
author_email="gen.li@yale.edu",
1111
description="A simple module for generating a bunch of SOPs for different schools.",

0 commit comments

Comments
 (0)