-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (28 loc) · 1 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
from setuptools import setup
import pathlib
VERSION = '1.0.1'
# The directory containing this file
HERE = pathlib.Path(__file__).resolve().parent
# The text of the README file is used as a description
README = HERE.joinpath("README.md").read_text()
setup(
name='belief-propagation-ldpc',
version=VERSION,
packages=['belief_propagation'],
url='https://github.com/YairMZ/belief_propagation',
license='MIT',
author='Yair Mazal',
description='Belief propagation on Tanner graphs. Implements an LLR based LDPC decoder.',
long_description=README,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
include_package_data=True,
install_requires=["numpy", "networkx"],
keywords=["LDPC", "Belief Propagation", "SPA", "Tanner Graph"]
)