Content-Length: 1952 | pFad | https://github.com/xhan97/inne/raw/refs/heads/master/setup.py
th: 1940 #! /usr/bin/env python """A template for scikit-learn compatible packages.""" import codecs import os from setuptools import find_packages, setup # get __version__ from _version.py ver_file = os.path.join('inne', '_version.py') with open(ver_file) as f: exec(f.read()) DISTNAME = 'inne' DESCRIPTION = 'A Isolation based anomaly detection algorithms.' with codecs.open('README.rst', encoding='utf-8-sig') as f: LONG_DESCRIPTION = f.read() MAINTAINER = 'Xin Han' MAINTAINER_EMAIL = 'xhan@tulip.academy' URL = 'https://github.com/xhan97/inne' LICENSE = 'new BSD' DOWNLOAD_URL = 'https://github.com/xhan97/inne' 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 :: 3'] 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 python_requires='>=3.5', classifiers=CLASSIFIERS, packages=find_packages(), install_requires=INSTALL_REQUIRES, extras_require=EXTRAS_REQUIRE)Fetched URL: https://github.com/xhan97/inne/raw/refs/heads/master/setup.py
Alternative Proxies: