diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..5513244 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +/LICENCE +/INSTALL +/CHANGES.md +/.gitignore +/.git +/.travis.yml +/env +/dist diff --git a/CHANGES.md b/CHANGES.md index ffdf69c..a62c693 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,3 @@ ## 1.0.0 -* First commit +* First working release diff --git a/README.md b/README.md index 49da6ea..57a0c8a 100644 --- a/README.md +++ b/README.md @@ -59,10 +59,6 @@ pip install annotateVcf.X.X.X-py3-none-any.whl Release `.whl` files are generated as part of the release process and can be found on the [release page][annotateVcf-releases] -### Package Dependancies - -`pip` will install the relevant dependancies, listed here for convenience, please refer requirements.txt for versions. - ## Development environment This project uses git pre-commit hooks. As these will execute on your system it diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 4634cae..0000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -tzlocal==1.5.1 -pytest==3.5.1 -radon==2.2.0 -pytest-cov==2.5.1 diff --git a/setup.py b/setup.py index 9629540..63ea689 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ 'python_requires': '>= 3.3', 'install_requires': ['tzlocal'], 'packages': ['annotate'], - 'package_data': {'annotate':['config/*.conf','config/drvData/*']}, + 'package_data': {'annotate':['config/*.conf','config/*.json','config/drvData/*']}, 'entry_points': { 'console_scripts': ['annotateVcf=annotate.annotate_cmd:main'], }