Skip to content

Commit

Permalink
버전 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
laoraid committed Dec 22, 2019
1 parent 9989f51 commit 37d2f11
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions __about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__version__ = '0.3.0'
__author__ = 'Laoraid'
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
from __about__ import __version__, __author__


# -- Project information -----------------------------------------------------

project = 'KartRider'
copyright = '2019, Laoraid'
author = 'Laoraid'
author = __author__

# The full version, including alpha/beta/rc tags
release = '0.3.0'
release = __version__


# -- General configuration ---------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from setuptools import find_packages, setup
from __about__ import __author__, __version__

setup(
name='KartRider',
version='0.2.0',
version=__version__,
url='https://github.com/laoraid/KartRider.py',
license='MIT',
author='Laoraid',
author=__author__,
author_email='a99azaz@gmail.com',
description='KartRider Open API Python wrapper',
packages=find_packages(exclude=['tests']),
Expand Down

0 comments on commit 37d2f11

Please sign in to comment.