-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (37 loc) · 1.24 KB
/
setup.py
File metadata and controls
46 lines (37 loc) · 1.24 KB
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
import setuptools
VERSION = '0.2.9'
DESCRIPTION = 'DeepMIMOv3'
LONG_DESCRIPTION = """
This package contains Python code for DeepMIMOv3 generator library.
## ⚠️ Archival Notice
All future versions are now maintained in the [DeepMIMO Unified Repository](https://github.com/DeepMIMO/DeepMIMO),
**This package has been archived**, but can still be installed!
**DeepMIMOv4** is being developed in this repository and will be made public in May 2025.
You can also install deepmimo v2/v3/v4 via the unified PyPI:
`pip install deepmimo==3`
"""
# Setting up
setuptools.setup(
name="DeepMIMOv3",
version=VERSION,
author="Umut Demirhan, Ahmed Alkhateeb",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license_files=('LICENSE.md',),
install_requires=[
'numpy',
'scipy',
'tqdm',
'matplotlib',
],
keywords=['mmWave', 'MIMO', 'DeepMIMO', 'python', 'Beta'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
url='https://deepmimo.net/'
)