https://github.com/aimalz/proclam
Raw File
Tip revision: c5ee6359f24a269a6d19ba9ce68e18e1c2d68485 authored by Merlin Fisher-Levine on 05 August 2022, 18:00:49 UTC
Run futurize -2 -x division_safe -n -w .
Tip revision: c5ee635
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