Small fixes to setup and readme (#2175)

This commit is contained in:
Cuong Duong 2022-05-22 19:40:41 +10:00 committed by GitHub
parent b7d5ec4481
commit 385e2afb43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -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
```

View file

@ -2,6 +2,6 @@
requires = [
"setuptools>=42",
"wheel",
"cmdstanpy>=1.0.0",
"cmdstanpy>=1.0.1",
]
build-backend = "setuptools.build_meta"

View file

@ -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",