diff --git a/MANIFEST.in b/MANIFEST.in index bce81a93e3a9f13bcb09e0d20129bbce69176c06..ac2af8ff93547e9a0b30bc6bc4b3c0294c613cf2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include README.md +include setup.cfg include jass/swagger/swagger.yaml recursive-include jass/static * recursive-include celery_files * diff --git a/inittable_test.py b/inittable_test.py deleted file mode 100644 index 725bfa63f458a3cf023b0f18b6e91731d7da9e2e..0000000000000000000000000000000000000000 --- a/inittable_test.py +++ /dev/null @@ -1,7 +0,0 @@ -from jass.models.worktable import create_inittable_file -input_data_path = '/home/hmenager/jass/jass/test/data_test1/*chr*.txt' -init_covariance_path = '/home/hmenager/jass/jass/test/data_test1/COV.txt' -regions_map_path = '/home/hmenager/jass/jass/test/data_test1/regions.txt' -description_file_path = '/home/hmenager/jass/jass/test/data_test1/summary.csv' -init_table_path = '/tmp/test.h5' -create_inittable_file(input_data_path, init_covariance_path, regions_map_path, description_file_path, init_table_path) diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000000000000000000000000000000000..b7e478982ccf9ab1963c74e1084dfccb6e42c583 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[aliases] +test=pytest diff --git a/setup.py b/setup.py index 95b388ac191329c0a352e59dcb72722bd2ca3c4f..42b379d0d2e089ceab1cfd7d4b568076698c7e16 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,12 @@ setup( include_package_data=True, long_description="""\ - """ + """, + setup_requires=[ + 'pytest-runner', + ], + tests_require=[ + 'pytest', + ] )