forked from DeepMIMO/DeepMIMO-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 933 Bytes
/
setup.py
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
import setuptools
VERSION = '0.2.5'
DESCRIPTION = 'DeepMIMOv3'
LONG_DESCRIPTION = 'DeepMIMOv3 dataset generator library'
# Setting up
setuptools.setup(
name="DeepMIMOv3",
version=VERSION,
author="Umut Demirhan, Ahmed Alkhateeb",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license_files = ('LICENSE.txt', ),
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/'
)