Skip to content

Commit

Permalink
add black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbailey committed Dec 14, 2019
1 parent 09e3e39 commit 3412829
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
language: python
python: 3.6
install: pip install .
script: pytest
script: black . && pytest
8 changes: 3 additions & 5 deletions conf.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import sys
import os

sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath("."))

import rail

master_doc = 'README'
master_doc = "README"

extensions = [
'sphinx.ext.autodoc',
]
extensions = ["sphinx.ext.autodoc"]
20 changes: 11 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

from setuptools import setup

setup(name='RAIL',
version='0.5',
description='Risk Assessment Library',
author='David Bailey',
author_email='david@davidabailey.com',
url='https://github.com/davidbailey/rail',
packages=['rail'],
license='MIT License',
install_requires=['numpy', 'pandas', 'matplotlib', 'scipy']
setup(
name="RAIL",
version="0.6",
description="Risk Assessment Library",
author="David Bailey",
author_email="david@davidabailey.com",
url="https://github.com/davidbailey/rail",
packages=["rail"],
license="MIT License",
install_requires=["numpy", "pandas", "matplotlib", "scipy"],
tests_requires=["black"],
)

0 comments on commit 3412829

Please sign in to comment.