Skip to content

Commit f6888ee

Browse files
authored
Merge pull request #14 from hyunmin0317/docs_issue_13
Docs issue 13
2 parents cb6df99 + f2a80ff commit f6888ee

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Hyunmin
3+
Copyright (c) 2023 Choi Hyun Min
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# sangmyung-univ-auth ![Python versions](https://img.shields.io/badge/Python-3.9-blue) ![License](https://img.shields.io/badge/license-MIT-green) ![Release](https://img.shields.io/badge/release-1.0.1-red)
1+
# sangmyung-univ-auth ![Python versions](https://img.shields.io/badge/Python-3.9-blue) ![License](https://img.shields.io/badge/license-MIT-green) ![Release](https://img.shields.io/badge/release-1.0.2-red)
22
**상명대학교 재학생 인증 라이브러리**
33

44
## Features

sangmyung_univ_auth/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from .auth import auth
22

3-
__VERSION__ = "1.0.1"
3+
__VERSION__ = '1.0.2'
4+
__AUTHOR__ = 'Choi Hyun Min'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import setuptools
22
from setuptools import setup
3-
from sangmyung_univ_auth import __VERSION__
3+
from sangmyung_univ_auth import __VERSION__, __AUTHOR__
44

55
with open('README.md', 'r', encoding='utf-8') as f:
66
long_description = f.read()
77

88
setup(
99
name='sangmyung-univ-auth',
1010
version=__VERSION__,
11-
author='Hyunmin',
11+
author=__AUTHOR__,
1212
author_email='choihm9903@naver.com',
1313
description='Sangmyung University Students Account Authentication.',
1414
long_description=long_description,

0 commit comments

Comments
 (0)