blob: 4d7b85d02b466d10b5429c72af7eee57eefd9937 [file] [log] [blame]
Philipp Le9d2c3e72022-03-22 23:30:43 +01001#!/usr/bin/env python
2
3# SPDX-License-Identifier: MPL-2.0
4# Copyright (c) 2022 Philipp Le <philipp@philipple.de>.
5# This Source Code Form is subject to the terms of the Mozilla Public
6# License, v. 2.0. If a copy of the MPL was not distributed with this
7# file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
9from setuptools import setup
10
11setup(
12 name='dcs_interactive',
13 version='0.1',
14 description='Interactive Simulations and Visualizations for the Lecture in Digital Communication Systems',
15 author='Philipp Le',
16 author_email='philipp@philipple.de',
17 packages=['dcs'],
18 install_requires=[
19 'numpy',
20 'scipy',
21 'matplotlib',
Philipp Le6203e732022-04-26 21:50:26 +020022 'toml',
23 'pydantic',
24 'appdirs',
Philipp Le9d2c3e72022-03-22 23:30:43 +010025 ],
26 classifiers=[
27 'Development Status :: 2 - Pre-Alpha',
28 'Environment :: Console',
29 'Environment :: X11 Applications',
30 'Environment :: Win32 (MS Windows)',
31 'Intended Audience :: Education',
32 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
33 'Operating System :: MacOS :: MacOS X',
34 'Operating System :: Microsoft :: Windows',
35 'Operating System :: POSIX',
36 'Programming Language :: Python',
37 'Topic :: Education',
38 'Topic :: Scientific/Engineering',
39 'Typing :: Typed',
40 ],
41)