import setuptools setuptools.setup( name="dialin", version="0.0.1", author="Peter Lucia", author_email="plucia@diality.com", description="The Diality Dial-In API", packages=setuptools.find_packages(exclude=["test*", "tools", "venv"]), classifiers=[ # all classifiers: https://pypi.org/classifiers/ "Programming Language :: Python :: 3.6", "Operating System :: POSIX :: Linux", ], python_requires=">=3.6", install_requires=[ "aenum", "cycler", "kiwisolver", "matplotlib", "numpy", "pkg-resources", "pyparsing", "python-can", "python-dateutil", "six", "wrapt" ] )