Skip to content

Commit

Permalink
Add suitable classifiers to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kiudee committed Mar 19, 2020
1 parent fa6eeff commit 33d60ce
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions setup.py
Expand Up @@ -21,6 +21,19 @@
version="1.0.2",
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
],
description=DESCRIPTION,
packages=find_packages(),
install_requires=[
Expand All @@ -46,12 +59,9 @@
"h5py>=2.7",
"pygmo>=2.7",
],
"probabilistic": [
"pymc3>=3.8",
"theano>=1.0",
],
"probabilistic": ["pymc3>=3.8", "theano>=1.0",],
},
package_data={"notebooks": ["*"]},
include_package_data=True,
long_description=readme + "\n\n" + history
long_description=readme + "\n\n" + history,
)

0 comments on commit 33d60ce

Please sign in to comment.