https://github.com/aimalz/proclam
Raw File
Tip revision: fa684901fec88d04fdab674e3e3425f5c0438970 authored by Alex Malz on 07 May 2018, 22:37:36 UTC
Merge branch 'master' of https://github.com/aimalz/proclam into issue4
Tip revision: fa68490
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"],
    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