refactor code structure. tests passing.
This commit is contained in:
parent
6e483cbd74
commit
e94a824fa0
8
Makefile
8
Makefile
|
@ -1,10 +1,10 @@
|
||||||
init:
|
init:
|
||||||
pip install -r requirements.txt
|
pip3 install --user -r requirements.txt
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python -m unittest -v tests/test_bit.py
|
python3 -m unittest -v tests/test_bit.py
|
||||||
python -m unittest -v tests/test_bits.py
|
python3 -m unittest -v tests/test_bits.py
|
||||||
python -m unittest -v tests/test_bytes.py
|
python3 -m unittest -v tests/test_bytes.py
|
||||||
|
|
||||||
.PHONY: init test
|
.PHONY: init test
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
# Bits
|
# Bits
|
||||||
|
|
||||||
Helps manage your bits!
|
Helps manage your bits!
|
||||||
|
|
||||||
|
Intended to be compatible with Python 3.6+. Written and tested against Python
|
||||||
|
3.8.5 Ubuntu 20.04.1 LTS.
|
||||||
|
|
||||||
|
If something doesn't work in Python 3.6, it's a bug. Please report any such
|
||||||
|
bugs if they are encountered.
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
from .main import Bit, Bits, Bytes
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Makefile for Sphinx documentation
|
||||||
|
#
|
||||||
|
# This is currently a stub. TODO: documentation
|
||||||
|
#
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="bits",
|
name="bits",
|
||||||
version="1.0.1",
|
version="1.0.0",
|
||||||
author="S Groesz",
|
author="S Groesz",
|
||||||
description="Make your bits easier to handle",
|
description="Make your bits easier to handle",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
|
Loading…
Reference in New Issue