From ded98c493e31b95f0b795919d29f489d32b6dd49 Mon Sep 17 00:00:00 2001 From: "Francis T. O'Donovan" Date: Thu, 25 Jul 2019 19:20:21 -0400 Subject: [PATCH] Add python 2/3 trove classifiers Clearly identify this project as supporting python 2 and 3. This is useful for utility programs like [caniusepython3](https://github.com/brettcannon/caniusepython3#how-do-you-tell-if-a-project-has-been-ported-to-python-3). --- python/setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/setup.py b/python/setup.py index fcde55a..4a70b17 100644 --- a/python/setup.py +++ b/python/setup.py @@ -120,6 +120,12 @@ setup( 'test': TestCommand, }, test_suite='fbprophet.tests', + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + ], long_description=""" Implements a procedure for forecasting time series data based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects. It works best with time series that have strong seasonal effects and several seasons of historical data. Prophet is robust to missing data and shifts in the trend, and typically handles outliers well. """