blob: 4d7b85d02b466d10b5429c72af7eee57eefd9937 [file] [log] [blame]
#!/usr/bin/env python
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) 2022 Philipp Le <philipp@philipple.de>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from setuptools import setup
setup(
name='dcs_interactive',
version='0.1',
description='Interactive Simulations and Visualizations for the Lecture in Digital Communication Systems',
author='Philipp Le',
author_email='philipp@philipple.de',
packages=['dcs'],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'toml',
'pydantic',
'appdirs',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Environment :: X11 Applications',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Education',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Typing :: Typed',
],
)