-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.45 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.45 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
import sys
import setuptools
# Get version from "neoradium/__init__.py":
with open("neoradium/__init__.py") as f: lines = f.read().split('\n')
nrVersion = '0.0.0'
for line in lines:
if line[:11]=="__version__":
nrVersion = line.split("'")[1]
break
installedPackages = [ 'numpy>=1.24.0',
'matplotlib',
'jupyterlab',
'scipy' ]
setuptools.setup(name="neoradium",
version = nrVersion,
author = "Shahab Hamidi-Rad",
author_email = "shahab.hamidi-rad@interdigital.com",
description = "NeoRadium 3GPP 5G NR wireless communication python library",
long_description = open("README.md", "r", encoding="utf-8").read(),
license = open("LICENSE", "r", encoding="utf-8").read(),
url = "http://www.interdigital.com",
packages = ['neoradium'],
classifiers=[ 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Researchers',
'Topic :: Software Development',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'],
python_requires='>=3.10, <4',
install_requires=installedPackages)