Skip to content

Commit 5caf1c4

Browse files
committed
chore: Prepare package for PyPI distribution
- Update setup.py with long description from README - Bump package version to 0.1.1 - Add long description content type for better PyPI rendering
1 parent dd6f022 commit 5caf1c4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# setup.py
22
from setuptools import setup, find_packages
33

4+
with open("README.md", "r", encoding="utf-8") as fh:
5+
long_description = fh.read()
6+
47
setup(
58
name="lang2sql", # 패키지 이름
6-
version="0.1.0", # 버전
9+
version="0.1.1", # 버전
710
description="Lang2SQL - Query Generator for Data Warehouse",
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
813
author="ehddnr301",
914
packages=find_packages(), # my_package를 자동으로 찾음
1015
install_requires=[

0 commit comments

Comments
 (0)