https://github.com/aimalz/proclam
Raw File
Tip revision: 2efeb0aa9c47f791c9ad29660b5c246ff773ef2a authored by Gautham Narayan on 24 September 2018, 23:34:39 UTC
verify with allclose for extra persnicketyness
Tip revision: 2efeb0a
setup.py
from setuptools import setup

setup(
    name="proclam",
    version="0.1",
    author="Alex Malz",
    author_email="aimalz@nyu.edu",
    url = "https://github.com/aimalz/proclam",
    packages=["proclam", "proclam.classifiers", "proclam.metrics", "proclam.simulators"],
    description="PRObabilistic CLAssification Metrics",
    long_description=open("README.md").read(),
    package_data={"": ["README.md", "LICENSE"]},
    include_package_data=True,
    classifiers=[
        "Development Status :: 4 - Beta",
        "License :: OSI Approved :: MIT License",
        "Intended Audience :: Developers",
        "Intended Audience :: Science/Research",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        ],
    install_requires=["matplotlib", "numpy", "scipy", "sklearn"]
)
back to top