@@ -4,3 +4,6 @@ include LICENSE
# Ensure in-place built models do not get included in the source dist.
prune fbprophet/stan_models
+
+# Necessary for tests to run
+include fbprophet/tests/*.csv
@@ -113,6 +113,8 @@ setup(
],
zip_safe=False,
include_package_data=True,
+ # For Python 3, Will enforce that tests are run after a build.
+ use_2to3=True,
cmdclass={
'build_py': BuildPyCommand,
'develop': DevelopCommand,