We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f53b4 commit 840a8b8Copy full SHA for 840a8b8
pyaf/__init__.py
@@ -14,5 +14,5 @@ def check_python_version_for_pyaf():
14
15
from . import ForecastEngine, HierarchicalForecastEngine
16
17
-__version__ = '1.2.3'
+__version__ = '1.2.4'
18
setup.py
@@ -1,9 +1,14 @@
1
from setuptools import setup
2
from setuptools import find_packages
3
4
+with open("README.md", "r") as fh:
5
+ pyaf_long_description = fh.read()
6
+
7
setup(name='pyaf',
- version='1.2.3',
8
+ version='1.2.4',
9
description='Python Automatic Forecasting',
10
+ long_description=pyaf_long_description,
11
+ long_description_content_type="text/markdown",
12
author='Antoine CARME',
13
author_email='[email protected]',
url='https://github.com/antoinecarme/pyaf',
0 commit comments