Makefile + fixes
This commit is contained in:
parent
fd287f319f
commit
6b5936bcee
|
@ -1,3 +1,6 @@
|
||||||
.idea
|
.idea
|
||||||
__pycache__
|
__pycache__
|
||||||
build/
|
build/
|
||||||
|
venv/
|
||||||
|
dist/
|
||||||
|
*egg-info*
|
18
Makefile
18
Makefile
|
@ -1,8 +1,26 @@
|
||||||
|
.PHONY: init freeze test test_verbose build_dist upload
|
||||||
|
|
||||||
|
venv:
|
||||||
|
python3 -m venv .env
|
||||||
|
|
||||||
init:
|
init:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
freeze:
|
||||||
|
pip freeze | grep -v "pkg-resources" > requirements.txt
|
||||||
|
|
||||||
test:
|
test:
|
||||||
nosetests tests/*
|
nosetests tests/*
|
||||||
|
|
||||||
test_verbose:
|
test_verbose:
|
||||||
nosetests --nocapture tests/*
|
nosetests --nocapture tests/*
|
||||||
|
|
||||||
|
build_dist:
|
||||||
|
rm -rf dist/*
|
||||||
|
python3 setup.py sdist bdist_wheel
|
||||||
|
|
||||||
|
upload_test:
|
||||||
|
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
|
||||||
|
|
||||||
|
upload:
|
||||||
|
python3 -m twine upload dist/*
|
|
@ -4,6 +4,12 @@
|
||||||
|
|
||||||
Encode and decode 8B10B encoding
|
Encode and decode 8B10B encoding
|
||||||
|
|
||||||
|
## Get
|
||||||
|
|
||||||
|
```
|
||||||
|
python3 -m pip install encdec8b10b
|
||||||
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Encode Data Byte
|
### Encode Data Byte
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
bleach==3.1.0
|
||||||
|
certifi==2019.3.9
|
||||||
|
chardet==3.0.4
|
||||||
|
docutils==0.14
|
||||||
|
idna==2.8
|
||||||
|
nose==1.3.7
|
||||||
|
pkginfo==1.5.0.1
|
||||||
|
Pygments==2.3.1
|
||||||
|
readme-renderer==24.0
|
||||||
|
requests==2.21.0
|
||||||
|
requests-toolbelt==0.9.1
|
||||||
|
six==1.12.0
|
||||||
|
tqdm==4.31.1
|
||||||
|
twine==1.13.0
|
||||||
|
urllib3==1.24.2
|
||||||
|
webencodings==0.5.1
|
6
setup.py
6
setup.py
|
@ -4,10 +4,10 @@ with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='encdec_8b10b',
|
name='encdec8b10b',
|
||||||
version='1.0-alpha',
|
version='1.0',
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
url='https://github.com/olagrottvik/encdec_8b10b',
|
url='https://github.com/olagrottvik/encdec8b10b',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='Ola Grøttvik',
|
author='Ola Grøttvik',
|
||||||
author_email='olagrottvik@gmail.com',
|
author_email='olagrottvik@gmail.com',
|
||||||
|
|
Loading…
Reference in New Issue