Skip to content

Commit

Permalink
Merge branch 'master' of github.com:facebook/prophet
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean J. Taylor committed Dec 21, 2018
2 parents e0ce0d0 + 6886371 commit 4345a90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions python/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ include stan/unix/*.stan
include stan/win/*.stan
include LICENSE
include requirements.txt
include pyproject.toml

# Ensure in-place built models do not get included in the source dist.
prune fbprophet/stan_model
Expand Down
2 changes: 2 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build-system]
requires = ["Cython>=0.22", "numpy>=1.10.0", "pystan>=2.14"]
11 changes: 4 additions & 7 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
add_activation_listener,
require,
)
from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
from setuptools.command.develop import develop
from setuptools.command.test import test as test_command
Expand All @@ -19,8 +19,7 @@
if platform.platform().startswith('Win'):
PLATFORM = 'win'

SETUP_DIR = os.path.dirname(os.path.abspath(__file__))
MODEL_DIR = os.path.join(SETUP_DIR, 'stan', PLATFORM)
MODEL_DIR = os.path.join('stan', PLATFORM)
MODEL_TARGET_DIR = os.path.join('fbprophet', 'stan_model')


Expand Down Expand Up @@ -100,18 +99,16 @@ def with_project_on_sys_path(self, func):
name='fbprophet',
version='0.4',
description='Automatic Forecasting Procedure',
url='facebook.github.io/prophet/',
url='https://facebook.github.io/prophet/',
author='Sean J. Taylor <[email protected]>, Ben Letham <[email protected]>',
author_email='[email protected]',
license='BSD',
packages=['fbprophet', 'fbprophet.tests'],
packages=find_packages(),
setup_requires=[
],
install_requires=install_requires,
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,
Expand Down

0 comments on commit 4345a90

Please sign in to comment.