forked from capn-freako/PyBERT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (57 loc) · 1.81 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
""" setup.py - Distutils setup file for PyBERT package
David Banas
October 22, 2014
"""
from setuptools import setup, find_packages
import pybert
setup(
name="PyBERT",
version=pybert.__version__,
packages=find_packages(),
include_package_data=True,
license="BSD",
description="Serial communication link bit error rate tester simulator, written in Python.",
long_description=open("README.md").read(),
url="https://github.com/capn-freako/PyBERT/wiki",
author="David Banas",
author_email="capn.freako@gmail.com",
install_requires=[
"chaco",
"enable",
"kiwisolver",
"numpy",
"scikit-rf",
"scipy",
"traits",
"traitsui",
"PyIBIS-AMI>=3.3.3",
"pyyaml",
"pyside2",
],
entry_points={
"console_scripts": [
"pybert = pybert.pybert:main",
]
},
keywords=["bert", "communication", "simulator"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Adaptive Technologies",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: System :: Emulators",
"Topic :: System :: Networking",
"Topic :: Utilities"
],
)