Commit 80647659 authored by Kittisak Maneewong's avatar Kittisak Maneewong

Add Converter

parent 2b2948ff
This diff is collapsed.
# converter
python library
[![Circle CI](https://circleci.com/gh/Kittisak162/s/tree/develop.svg?style=svg)](https://circleci.com/gh/Kittisak162/s/tree/develop)
# CircleCI Configuration file
machine:
python:
version: 2.7.11
general:
artifacts:
- "dist"
- "cover"
dependencies:
override:
- pip install tox tox-pyenv
- pyenv local 2.7.11 3.5.1 # Should correspond to pre-installed Python versions on CircleCI
test:
override:
- tox
deployment:
pypi:
tag: /[0-9]+(\.[0-9]+)*/
owner: Kittisak162
commands:
- echo "[distutils]" > ~/.pypirc
- echo "index-servers =" >> ~/.pypirc
- echo " pypi" >> ~/.pypirc
- echo >> ~/.pypirc
- echo "[pypi]" >> ~/.pypirc
- echo "username:$PYPI_USERNAME" >> ~/.pypirc
- echo "password:$PYPI_PASSWORD" >> ~/.pypirc
- echo >> ~/.pypirc
- python setup.py register -r pypi
- python setup.py sdist upload -r pypi
def double(v):
v=v.replace(' ','')
v+="0"*(64-len(v))
sign=1 if v[0]=='0' else -1
e=sum([int(v[i])*(2**(11-i)) for i in range(1,12)])
x=1+sum([int(v[i])*(2**(11-i)) for i in range(12,64)])
return sign*x*2**(e-1023)
"""
Example test.
"""
from hamcrest import (
assert_that,
equal_to,
is_,
)
def test_math():
assert_that(1 + 1, is_(equal_to(2)))
[flake8]
max-line-length = 120
max-complexity = 15
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "converter"
version = "0.1.0"
setup(
name=project,
version=version,
description="python library",
author="Kittisak162",
author_email="kittisak.ma.59@ubu.ac.th",
url="https://github.com/Kittisak162/s",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
],
setup_requires=[
"nose>=1.3.6",
],
dependency_links=[
],
entry_points={
},
tests_require=[
"coverage>=3.7.1",
"mock>=1.0.1",
"PyHamcrest>=1.8.5",
],
)
[tox]
envlist = py27, py35, lint
[testenv]
commands =
python setup.py nosetests --with-coverage --cover-package=converter --cover-erase --cover-html
python setup.py sdist
deps =
setuptools>=17.1
[testenv:lint]
commands=flake8 converter
basepython=python2.7
deps=
flake8
flake8-print
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment