18 lines
497 B
Python
18 lines
497 B
Python
|
import setuptools
|
||
|
|
||
|
with open("README.md", "r") as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name='encdec_8b10b',
|
||
|
version='1.0-alpha',
|
||
|
packages=setuptools.find_packages(),
|
||
|
url='https://github.com/olagrottvik/encdec_8b10b',
|
||
|
license='MIT',
|
||
|
author='Ola Grøttvik',
|
||
|
author_email='olagrottvik@gmail.com',
|
||
|
description='8B10B Encoding and Decoding',
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
)
|