diff --git a/pyproject.toml b/pyproject.toml index 062a932f..55a2c5f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta" [project] name = "cgat" -version = "0.7.5" +version = "0.7.6" description = "cgat : the Computational Genomics Analysis Toolkit" authors = [ {name = "Adam Cribbs", email = "adam.cribbs@ndorms.ox.ac.uk"}, diff --git a/setup.py b/setup.py index 28f8fd01..badc5264 100644 --- a/setup.py +++ b/setup.py @@ -127,5 +127,10 @@ ext_modules=extensions, cmdclass={'build_ext': build_ext}, zip_safe=False, + entry_points={ + 'console_scripts': [ + 'cgat = cgat.cgat.main', + ], + }, test_suite="tests", -) \ No newline at end of file +)