Skip to content

Commit

Permalink
complete version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenMeinecke committed May 15, 2019
1 parent 4410e18 commit e137bc0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = "1.0"
version = "1.0.0"
# The full version, including alpha/beta/rc tags.
release = "1.0"
release = "1.0.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
from setuptools import setup, find_packages
import re

with open('README.rst', 'rb') as f:
readme = f.read().decode('utf-8')

classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
Expand All @@ -21,10 +24,11 @@

setup(
name='simbench',
version='1.0',
version='1.0.0',
author='Steffen Meinecke',
author_email='steffen.meinecke@uni-kassel.de',
description='Electrical Power System Benchmark Models',
long_description=readme,
url='http://www.simbench.de/en',
license='odbl',
install_requires=["pandapower>=2.0"],
Expand Down
2 changes: 1 addition & 1 deletion simbench/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual
# contributors (see AUTHORS file for details). All rights reserved.

__version__ = "1"
__version__ = "1.0.0"
__author__ = "smeinecke"

import os
Expand Down

0 comments on commit e137bc0

Please sign in to comment.