Skip to content

Commit c309bca

Browse files
committed
Bump version for release
1 parent 39186e6 commit c309bca

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
v0.0.2 (2021-03-25)
6+
-------------------
7+
8+
* Add scenario builder for deflex
9+
510
v0.0.1 (2020-08-06)
611
-------------------
712

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def read(*names, **kwargs):
2323

2424
setup(
2525
name="scenario-builder",
26-
version="v0.0.1",
26+
version="v0.0.2",
2727
license="MIT",
2828
description=(
2929
"Tools to build scenario inputs from historical data or"
@@ -36,6 +36,7 @@ def read(*names, **kwargs):
3636
),
3737
re.sub(":[a-z]+:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst")),
3838
),
39+
long_description_content_type="text/x-rst",
3940
author="reegis",
4041
author_email="[email protected]",
4142
url="https://github.com/reegis/scenario_builder",
@@ -53,9 +54,9 @@ def read(*names, **kwargs):
5354
"Operating System :: Microsoft :: Windows",
5455
"Programming Language :: Python",
5556
"Programming Language :: Python :: 3",
56-
"Programming Language :: Python :: 3.6",
5757
"Programming Language :: Python :: 3.7",
5858
"Programming Language :: Python :: 3.8",
59+
"Programming Language :: Python :: 3.9",
5960
"Topic :: Utilities",
6061
],
6162
project_urls={
@@ -68,13 +69,13 @@ def read(*names, **kwargs):
6869
keywords=[
6970
# eg: 'keyword1', 'keyword2', 'keyword3',
7071
],
71-
python_requires=">=3.6",
72+
python_requires=">=3.7",
7273
install_requires=[
7374
"pandas",
7475
],
7576
extras_require={
7677
"reegis": [
77-
"reegis@https://github.com/reegis/reegis/archive/master.zip"
78+
"reegis",
7879
]
7980
# 'rst': ['docutils>=0.11'],
8081
# ':python_version=="2.6"': ['argparse'],

src/scenario_builder/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = 'v0.0.1'
1+
__version__ = 'v0.0.2'

0 commit comments

Comments
 (0)