Type집합을 만드는 라이브러리 입니다.
pip install gamlset유연하고 가독성 좋은 Type 생성 및 grouping을 돕습니다.
# 기존 방식
class OldTypeSet:
class OldTypeFeild_1:
pass
class OldTypeFeild_2:
pass
class GamlType(GamlObj):
pass
# GamlSet
class GamlTypeSet(GamlSet):
GamlType_1 = GamlType # GamlTypeSet__GamlType1
GamlType_2 = GamlType # GamlTypeSet__GamlType2사용 예시들은 examlple/을 참고하세요.
# 저장소 클론
git clone https://github.com/gamultong/gamlset.git
cd gamlset
# 개발 의존성 설치
pip install -e ".[dev]"
# 테스트 실행
python -m tests.run# 빌드
python setup.py sdist bdist_wheel
# PyPI 업로드
pip install twine
twine upload dist/*MIT License - 자세한 내용은 LICENSE 파일을 참조하세요.