https://github.com/dhuppenkothen/entrofy
Raw File
Tip revision: 28a6c0fa2c38f911b644e1aee48b62b820ba25df authored by Daniela Huppenkothen on 18 July 2016, 16:50:48 UTC
Merge pull request #30 from dhuppenkothen/tutorial
Tip revision: 28a6c0f
setup.py
from setuptools import setup, find_packages

import imp

version = imp.load_source('entrofy.version', 'entrofy/version.py')

setup(
    name='entrofy',
    version=version.version,
    description='Entrofy',
    author='Daniela Huppenkothen',
    author_email='daniela.huppenkothen@nyu.edu',
    url='http://github.com/dhuppenkothen/entrofy',
    download_url='http://github.com/dhuppenkothen/entrofy/releases',
    packages=find_packages(),
    long_description="""Entrofy""",
    classifiers=[
        "License :: OSI Approved :: ISC License (ISCL)",
        "Programming Language :: Python",
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
    ],
    license='ISC',
    install_requires=[
        'pandas>=0.18',
        'numpy>=1.10',
        'seaborn>=0.6.0',
        'matplotlib>=1.4.3'
    ],
    extras_require={
        'docs': ['numpydoc']
    }
)
back to top