Skip to content

Commit

Permalink
Add classifer details to setup.py including Matplotlib framework (arv…
Browse files Browse the repository at this point in the history
…iz-devs#1133)

* Add classifier details to setup, including matlplotlib framework

* Update README to reflect dropping 3.5 support for 3.8

* Update CHANGELOG
hectormz authored Apr 2, 2020
1 parent 9909aab commit 5c85b77
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
### Deprecation

### Documentation
* Add classifier to `setup.py` including Matplotlib framework (#1133)
* Image thumbs generation updated to be Bokeh 2 compatible (#1116)
* Add new examples for `plot_pair` (#1110)

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -155,7 +155,7 @@ python setup.py install

## Dependencies

ArviZ is tested on Python 3.5, 3.6 and 3.7, and depends on NumPy, SciPy, xarray, and Matplotlib.
ArviZ is tested on Python 3.6, 3.7 and 3.8, and depends on NumPy, SciPy, xarray, and Matplotlib.


## Citation
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -59,4 +59,19 @@ def get_version():
long_description=get_long_description(),
long_description_content_type="text/markdown",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Mathematics",
],
)

0 comments on commit 5c85b77

Please sign in to comment.