Skip to content

Commit

Permalink
docs: 개발자 이름 수정 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunmin0317 committed Oct 22, 2023
1 parent cb6df99 commit 7549843
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Hyunmin
Copyright (c) 2023 Choi Hyun Min

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion sangmyung_univ_auth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from .auth import auth

__VERSION__ = "1.0.1"
__VERSION__ = '1.0.1'
__AUTHOR__ = 'Choi Hyun Min'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import setuptools
from setuptools import setup
from sangmyung_univ_auth import __VERSION__
from sangmyung_univ_auth import __VERSION__, __AUTHOR__

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

setup(
name='sangmyung-univ-auth',
version=__VERSION__,
author='Hyunmin',
author=__AUTHOR__,
author_email='choihm9903@naver.com',
description='Sangmyung University Students Account Authentication.',
long_description=long_description,
Expand Down

0 comments on commit 7549843

Please sign in to comment.