Index: setup.py =================================================================== diff -u -ra03128f183206dc430bc0e27f43d7f3aee62672d -r90f916769c945c4ebea867225e1964940c3a41b6 --- setup.py (.../setup.py) (revision a03128f183206dc430bc0e27f43d7f3aee62672d) +++ setup.py (.../setup.py) (revision 90f916769c945c4ebea867225e1964940c3a41b6) @@ -1,44 +1,46 @@ ########################################################################### # -# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# 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. +# 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 +# @file setup.py # -# @date 29-Apr-2020 -# @author P. Lucia +# @author (last) Quang Nguyen +# @date (last) 09-Aug-2021 +# @author (original) Peter Lucia +# @date (original) 02-Apr-2020 # -# @brief Contains the setup parameters for package deployment -# ############################################################################ import setuptools setuptools.setup( name="dialin", - version="0.0.1", author="Peter Lucia", author_email="plucia@diality.com", - description="The Diality Dial-In API", + 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", - "pkg-resources", + "openpyxl", "pyparsing", "python-can", "python-dateutil", "six", - "wrapt" + "wrapt", ] - -) \ No newline at end of file +)