From c2299974aeb607400565589296f6feb39a1ad243 Mon Sep 17 00:00:00 2001 From: Floreal Cabanettes <floreal.cabanettes@inra.fr> Date: Wed, 21 Feb 2018 18:33:05 +0100 Subject: [PATCH] Update package files --- .gitignore | 1 + MANIFEST.in | 3 +++ setup.cfg | 6 ++++++ setup.py | 2 +- 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/.gitignore b/.gitignore index 5d79142..5586d40 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ logs/* dgenies/.local_scheduler_pid dgenies.egg-info application.properties.local +dist diff --git a/MANIFEST.in b/MANIFEST.in index 91696c2..a65d74c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -14,3 +14,6 @@ recursive-include src *.woff recursive-include src *.woff2 recursive-include src *.md include src/dgenies/bin/minimap2 +include requirements.txt +include LICENSE.txt +include README.md diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..96d8d6e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,6 @@ +[metadata] +url = http://dgenies.toulouse.inra.fr +author = Floréal Cabanettes +author_email = floreal.cabanettes@inra.fr +description = Dotplot large Genomes in an Interactive, Efficient and Simple way +python_requires = '>=3.5' diff --git a/setup.py b/setup.py index 4ae4da4..5dd28ef 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ install_reqs = parse_requirements('requirements.txt', session='hack') # reqs is a list of requirement # e.g. ['django==1.5.1', 'mezzanine==1.4.6'] reqs = [str(ir.req) for ir in install_reqs] -version = '1.0' +version = '1.0.0' if os.name == "posix": -- GitLab