Skip to content

Commit 840a8b8

Browse files
author
Antoine Carme
committed
PyPI installer
Tweaking minor releases (1.2.3 => 1.2.4)
1 parent 31f53b4 commit 840a8b8

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

pyaf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ def check_python_version_for_pyaf():
1414

1515
from . import ForecastEngine, HierarchicalForecastEngine
1616

17-
__version__ = '1.2.3'
17+
__version__ = '1.2.4'
1818

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
from setuptools import setup
22
from setuptools import find_packages
33

4+
with open("README.md", "r") as fh:
5+
pyaf_long_description = fh.read()
6+
47
setup(name='pyaf',
5-
version='1.2.3',
8+
version='1.2.4',
69
description='Python Automatic Forecasting',
10+
long_description=pyaf_long_description,
11+
long_description_content_type="text/markdown",
712
author='Antoine CARME',
813
author_email='[email protected]',
914
url='https://github.com/antoinecarme/pyaf',

0 commit comments

Comments
 (0)