-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
67 lines (61 loc) · 2.04 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "pyphysim"
version = "0.7.2"
description = "Simulation of digital communication (physical layer) in python"
authors = ["Darlan Cavalcante Moreira <darcamo@gmail.com>"]
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/darcamo/pyphysim"
keywords = ["physical layer", "QAM", "PSK", "QPSK", "BPSK", "OFDM", "Modulation", "Monte Carlo", "simulation", "MIMO", "Tapped Delay Line"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
include = ["LICENSE.md", "pyphysim/py.typed"]
# build = 'build.py'
[tool.poetry.dependencies]
python = "^3.7"
numpy = "*"
scipy = "*"
matplotlib = "*"
configobj = "*"
numba = "*"
# Required to run simulations in parallel
ipyparallel = {version = "^6.3.0", optional = true}
ipython = {version = "^7.16.1", optional = true}
# Required to use the 'ipython' style for progressbar (only works inside a notebook)
ipywidgets = {version = "^7.5.1", optional = true}
# Required to use the `to_dataframe` method of SimulationResults
pandas = {version = "^1.0.5", optional = true}
cloudpickle = {version = "^1.5.0", optional = true}
[tool.poetry.dev-dependencies]
nose = "^1.3.7"
mypy = "^0.782"
pre-commit = "^2.6.0"
pylint = "^2.5.3"
sphinx = "^3.1.2"
sphinx_rtd_theme = "^0.5.0"
yapf = "^0.30.0"
coverage = "^5.2"
coveralls = "^2.1.1"
pudb = "^2019.2"
darglint = "^1.5.1"
importmagic = "^0.1.7"
jupyterlab = "^2.2.0"
jupyterlab_code_formatter = "^1.3.5"
jupyter-lsp = "^0.8.0"
ipympl = "^0.5.7"
pip = "^20.1.1"
python-language-server = {extras = ["all"], version = "^0.34.1"}
epc = "^0.0.5"
[build-system]
# See https://github.com/chrahunt/rtd-poetry/issues/3
requires = ["poetry>=1.0", "rtd-poetry-tmp"]
build-backend = "rtd_poetry"
# requires = ["poetry>=0.12"]
# build-backend = "poetry.masonry.api"