Skip to content
This repository was archived by the owner on Feb 11, 2020. It is now read-only.

Commit 9f79230

Browse files
committed
Moved version information to package
1 parent 2abd839 commit 9f79230

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

bootstrap_ui/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1.0rc2'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import os
22
from setuptools import setup, find_packages
3+
from bootstrap_ui import __version__
34

45
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
56
README = readme.read()
@@ -9,7 +10,7 @@
910

1011
setup(
1112
name='django-bootstrap-ui',
12-
version='0.1.0rc1',
13+
version=__version__,
1314
packages=find_packages(exclude=['tests', 'docs']),
1415
include_package_data=True,
1516
license='ISC License (ISCL)',

0 commit comments

Comments
 (0)