blob: 07e7c9342a174564cb7552e41b455a328da8db09 [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
Philipp Le5ca7da82023-12-23 01:10:23 +01009from setuptools import setup, find_packages
Philipp Le9d2c3e72022-03-22 23:30:43 +010010
11setup(
Philipp Le71b65462023-12-23 01:00:25 +010012 name='dcs-interactive',
13 version='1.0.0',
Philipp Le9d2c3e72022-03-22 23:30:43 +010014 description='Interactive Simulations and Visualizations for the Lecture in Digital Communication Systems',
Philipp Leb0e52ad2023-12-23 01:01:44 +010015 long_description=open('README.md').read(),
Philipp Le9d2c3e72022-03-22 23:30:43 +010016 author='Philipp Le',
17 author_email='philipp@philipple.de',
Philipp Le5ca7da82023-12-23 01:10:23 +010018 packages=find_packages(),
Philipp Le84173f62022-04-19 22:27:12 +020019 entry_points={
20 'console_scripts': [
21 'dcs-interactive=dcs.main:main'
22 ]
23 },
Philipp Le9d2c3e72022-03-22 23:30:43 +010024 install_requires=[
Philipp Le71b65462023-12-23 01:00:25 +010025 'numpy~=1.26.2',
26 'scipy~=1.11.4',
27 'matplotlib~=3.8.2',
28 'toml~=0.10.2',
29 'pydantic>=1.0.0,<2.0.0',
30 'appdirs~=1.4.4',
Philipp Le9d2c3e72022-03-22 23:30:43 +010031 ],
32 classifiers=[
33 'Development Status :: 2 - Pre-Alpha',
34 'Environment :: Console',
35 'Environment :: X11 Applications',
36 'Environment :: Win32 (MS Windows)',
37 'Intended Audience :: Education',
38 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
39 'Operating System :: MacOS :: MacOS X',
40 'Operating System :: Microsoft :: Windows',
41 'Operating System :: POSIX',
42 'Programming Language :: Python',
43 'Topic :: Education',
44 'Topic :: Scientific/Engineering',
45 'Typing :: Typed',
46 ],
47)