mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-06-30 03:37:53 +00:00
Small fixes to setup and readme (#2175)
This commit is contained in:
parent
b7d5ec4481
commit
385e2afb43
3 changed files with 5 additions and 3 deletions
|
|
@ -101,7 +101,7 @@ Since Pystan2 is no longer being maintained, the python package will move to dep
|
|||
```bash
|
||||
git clone https://github.com/facebook/prophet.git
|
||||
cd prophet/python
|
||||
python -m install -r requirements.txt
|
||||
python -m pip install -r requirements.txt
|
||||
python setup.py develop
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
requires = [
|
||||
"setuptools>=42",
|
||||
"wheel",
|
||||
"cmdstanpy>=1.0.0",
|
||||
"cmdstanpy>=1.0.1",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ setup(
|
|||
license="MIT",
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
python_requires=">=3.6",
|
||||
python_requires=">=3.7",
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
ext_modules=[Extension("prophet.stan_model", [])],
|
||||
|
|
@ -249,6 +249,8 @@ setup(
|
|||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
],
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
|
|
|||
Loading…
Reference in a new issue