Commit 5e72f645 authored by Navayos Pratumthong's avatar Navayos Pratumthong

diff

parent 9878863b
# Always color, even if piping to a another program
--color
# Python project settings
--ignore-dir=.eggs/
--ignore-dir=.tox/
--ignore-dir=build/
--ignore-dir=cover/
[bumpversion]
current_version = 0.1.0
commit = False
tag = False
[bumpversion:file:setup.py]
search = version = "{current_version}"
replace = version = "{new_version}"
##
# .gitignore
#
# Based on:
#
# https://github.com/github/gitignore/blob/master/Global/OSX.gitignore
# https://github.com/github/gitignore/blob/master/Python.gitignore
##
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
cover
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
extends: globality-opensource-defaults
This diff is collapsed.
# diff
Short Project Description
[![Circle CI](https://circleci.com/gh/navayos/diff/tree/develop.svg?style=svg)](https://circleci.com/gh/navayos/diff/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: navayos
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
from math import e
def f(x) :
return e**(-x)
def second(f,x=1,h=0.001)
return (f(x+h)-(2*f(x))+f(x-h))/(h**2)
second (f,x=1,h=0.001)
"""
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 = "diff"
version = "0.1.0"
setup(
name=project,
version=version,
description="Short Project Description",
author="Navayos Pratumthong",
author_email="navayos.pr.59@ubu.ac.th",
url="https://github.com/navayos/diff",
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=diff --cover-erase --cover-html
python setup.py sdist
deps =
setuptools>=17.1
[testenv:lint]
commands=flake8 diff
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