From 7e14607efee0eab8fcd72ce7df64b35f6bd766a7 Mon Sep 17 00:00:00 2001 From: tcezard Date: Mon, 15 Jan 2024 14:16:37 +0000 Subject: [PATCH] Preparing release 0.1.0 --- CHANGELOG.md | 1 + MANIFEST.in | 5 +++++ VERSION | 2 +- setup.py | 10 +++++++++- 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 MANIFEST.in diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ebec73e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +## 0.1.0 (2024-01-15) \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..794227b --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +include *.md +include *.txt +include VERSION +recursive-include bin *.py +recursive-exclude tests * diff --git a/VERSION b/VERSION index 81340c7..6e8bf73 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.4 +0.1.0 diff --git a/setup.py b/setup.py index f7df6a9..d5338df 100644 --- a/setup.py +++ b/setup.py @@ -16,14 +16,22 @@ version=version, license='Apache', description='Tools for ingesting a new assembly for a species', + long_description='Tools and Workflow used by EVA to add new supported assembly for a species. All the submitted ' + 'variants will be remapped to the newly supported assembly, clustered variants will be recreated ' + 'and potential merge and split event be resolved.', url='https://github.com/EBIvariation/eva-assembly-ingestion', keywords=['ebi', 'eva', 'python'], install_requires=requirements, + python_requires='>=3.8', + author='EVA team', + author_email='eva-dev@ebi.ac.uk', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Topic :: Software Development :: Build Tools', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 3' + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + ] )