########################################################################### # # Copyright (c) 2020-2022 Diality Inc. - All Rights Reserved. # # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # # @file setup.py # # @author (last) Micahel Garthwaite # @date (last) 19-May-2022 # @author (original) Peter Lucia # @date (original) 02-Apr-2020 # ############################################################################ import setuptools setuptools.setup( name="dialin", author="Peter Lucia", author_email="plucia@diality.com", description="The Diality Dialin 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", use_scm_version = {"version_scheme" : "no-guess-dev", "git_describe_command" : "git describe --dirty --tags --long --exclude *LTTS*"}, setup_requires=['setuptools_scm'], install_requires=[ "aenum", "cycler", "importlib-metadata", "kiwisolver", "matplotlib", "numpy", "openpyxl", "pandas", "pyparsing", "python-can", "python-dateutil", "six", "wrapt", ] )