Bugfix and minor improvements (0.1.3)
* fix bug to print derived unit (e.g. N/rad) -> prints full units * replaced self.__vars with self._var attributes * works with Py3 (.5-.9) * added tox configs (though fails invocation with Py37) * added requirements.txt * added .gitignore
Showing
.gitignore
0 → 100644
.idea/.gitignore
0 → 100644
.idea/dataSources.xml
0 → 100644
.idea/misc.xml
0 → 100644
.idea/modules.xml
0 → 100644
.idea/python-units.iml
0 → 100644
.idea/vcs.xml
0 → 100644
File added
File added
File added
File added
requirements.txt
0 → 100644
appdirs==1.4.4 | ||
attrs==20.3.0 | ||
bleach==3.2.1 | ||
certifi==2020.12.5 | ||
chardet==4.0.0 | ||
colorama==0.4.4 | ||
coverage==5.3.1 | ||
distlib==0.3.1 | ||
docutils==0.16 | ||
filelock==3.0.12 | ||
idna==2.10 | ||
iniconfig==1.1.1 | ||
keyring==21.7.0 | ||
packaging==20.8 | ||
pkginfo==1.6.1 | ||
pluggy==0.13.1 | ||
py==1.10.0 | ||
Pygments==2.7.3 | ||
pyparsing==2.4.7 | ||
pytest==6.2.1 | ||
pytest-cov==2.10.1 | ||
-e git+https://bacculus.dev/paulkorir/python-units@a846800deb55cccf3f07657af1114634bc5678ac#egg=python_units | ||
readme-renderer==28.0 | ||
requests==2.25.1 | ||
requests-toolbelt==0.9.1 | ||
rfc3986==1.4.0 | ||
six==1.15.0 | ||
toml==0.10.2 | ||
tox==3.20.1 | ||
tqdm==4.55.0 | ||
twine==3.3.0 | ||
urllib3==1.26.2 | ||
virtualenv==20.2.2 | ||
webencodings==0.5.1 |
... | ... | @@ -16,13 +16,17 @@ with open(os.path.join(here, 'README.rst')) as f: |
setup( | ||
name="python-units", | ||
packages=find_packages(), | ||
version="0.1.2.post1", | ||
version="0.1.3", | ||
author="Paul K. Korir, PhD", | ||
author_email="[email protected]", | ||
url="https://bacculus.dev/paulkorir/units", | ||
url="https://bacculus.dev/paulkorir/python-units", | ||
description="Python library to represent numbers with units", | ||
long_description=long_description, | ||
long_description_content_type='text/x-rst; charset=UTF-8', | ||
license="GNU GPL v3.0", | ||
keywords="units", | ||
classifiers=[ | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3" | ||
] | ||
) |
tox.ini
0 → 100644
Please register or sign in to comment