-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.31 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]
[project]
name = "comyx"
requires-python = ">=3.10"
description = "Comyx is an optimized and modular Python library for simulating wireless communication systems."
authors = [{ name = "Muhammad Umer", email = "[email protected]" }]
keywords = ["python", "communication", "simulator", "wireless communication"]
dependencies = [
"numpy>=1.23.5",
"numba>=0.54.1",
"pandas>=2.0.1",
"scipy>=1.11.1",
"mpmath>=1.3.0",
"colorama>=0.4.6",
"matplotlib>=3.5.1",
"pyarrow>=14.0.0",
"python-box>=7.1.1",
"termcolor>=2.4.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://github.com/muhd-umer/comyx"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "comyx.__version__"}
[tool.setuptools.packages.find]
include = ["comyx*"]