-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.41 KB
/
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
31
32
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',
'notebook==6.5.4', 'traitlets==5.9.0', # Notebook 6.5.4 (I don't like version 7 yet!)
'scipy' ]
setuptools.setup(name="neoradium",
version = nrVersion,
author = "Shahab Hamidi-Rad",
author_email = "[email protected]",
description = "NeoRadium 3GPP 5G NR wireless communication python library",
long_description = open("README.md", "r").read(),
license = open("LICENSE", "r").read(),
url = "http://www.interdigital.com",
packages = ['neoradium'],
classifiers=[ 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Researchers',
'Topic :: Software Development',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'],
python_requires='>=3.8, <4',
install_requires=installedPackages)