diff --git a/.gitignore b/.gitignore index 6b39c60..3b6ece9 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ .pydevproject .idea + +build/ +dist/ diff --git a/.travis.yml b/.travis.yml index 251ee71..143de28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,7 @@ language: python python: - - "2.7" - - "3.3" - - "3.4" - - "3.6" - # PyPy versions - - "pypy" # PyPy2 2.5.0 - - "pypy3" # Pypy3 2.4.0 - - "pypy-5.3.1" -# command to install dependencies + - "3.7" + - "pypy3" install: - pip install -r requirements.txt -# command to run tests script: pytest diff --git a/setup.py b/setup.py index 2eb9117..09829ef 100644 --- a/setup.py +++ b/setup.py @@ -1,17 +1,11 @@ from setuptools import setup -def readme(): - with open('README.md') as f: - return f.read() - - setup( name='flatten_json', py_modules=['flatten_json', 'util'], - version='0.1.7', + version='0.1.8', description='Flatten JSON objects', - long_description=readme(), license='MIT', author='Amir Ziai', author_email='arziai@gmail.com',