mirror of
https://github.com/Doctorado-ML/bayesclass.git
synced 2025-08-16 08:05:57 +00:00
72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
#! /usr/bin/env python
|
|
"""A collection of Bayesian Estimators."""
|
|
|
|
import codecs
|
|
import os
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
# get __version__ from _version.py
|
|
ver_file = os.path.join("bayesclass", "_version.py")
|
|
with open(ver_file) as f:
|
|
exec(f.read())
|
|
|
|
DISTNAME = "bayesclass"
|
|
DESCRIPTION = "A collection of Bayesian Estimators."
|
|
with codecs.open("README.rst", encoding="utf-8-sig") as f:
|
|
LONG_DESCRIPTION = f.read()
|
|
MAINTAINER = "Ricardo Montañana"
|
|
MAINTAINER_EMAIL = "rmontanana@gmail.com"
|
|
URL = "https://github.com/doctorado-ml/bayesclass"
|
|
LICENSE = "MIT"
|
|
DOWNLOAD_URL = "https://github.com/doctorado-ml/bayesclass"
|
|
VERSION = __version__
|
|
INSTALL_REQUIRES = ["numpy", "scipy", "scikit-learn"]
|
|
CLASSIFIERS = [
|
|
"Intended Audience :: Science/Research",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved",
|
|
"Programming Language :: Python",
|
|
"Topic :: Software Development",
|
|
"Topic :: Scientific/Engineering",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: POSIX",
|
|
"Operating System :: Unix",
|
|
"Operating System :: MacOS",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
]
|
|
EXTRAS_REQUIRE = {
|
|
"tests": ["pytest", "pytest-cov"],
|
|
"docs": [
|
|
"sphinx",
|
|
"sphinx-gallery",
|
|
"sphinx_rtd_theme",
|
|
"numpydoc",
|
|
"matplotlib",
|
|
],
|
|
}
|
|
|
|
setup(
|
|
name=DISTNAME,
|
|
maintainer=MAINTAINER,
|
|
maintainer_email=MAINTAINER_EMAIL,
|
|
description=DESCRIPTION,
|
|
license=LICENSE,
|
|
url=URL,
|
|
version=VERSION,
|
|
download_url=DOWNLOAD_URL,
|
|
long_description=LONG_DESCRIPTION,
|
|
zip_safe=False, # the package can run out of an .egg file
|
|
classifiers=CLASSIFIERS,
|
|
packages=find_packages(),
|
|
install_requires=INSTALL_REQUIRES,
|
|
extras_require=EXTRAS_REQUIRE,
|
|
)
|