https://github.com/dhuppenkothen/entrofy
Revision 327365798d023e10f7322453a7ff32f0aa82432e authored by Daniela Huppenkothen on 13 April 2016, 21:26:35 UTC, committed by Daniela Huppenkothen on 13 April 2016, 21:26:35 UTC
1 parent 4f17822
Raw File
Tip revision: 327365798d023e10f7322453a7ff32f0aa82432e authored by Daniela Huppenkothen on 13 April 2016, 21:26:35 UTC
Moved the mapper construction into its own function
Tip revision: 3273657
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.16',
        'numpy>=1.10',
        'seaborn>=0.6.0',
        'matplotlib>=1.4.3'
    ],
    extras_require={
        'docs': ['numpydoc']
    }
)
back to top