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. """