Skip to content

Commit

Permalink
add package data
Browse files Browse the repository at this point in the history
  • Loading branch information
farchaab committed Oct 19, 2023
1 parent 83cff35 commit 2ac37e0
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
from setuptools import setup, find_packages
from assembly_finder import __version__

setup(name='assembly_finder',
version=__version__,
description='Snakemake pipeline for downloading assemblies from NCBI',
url='https://github.com/metagenlab/assembly_finder',
author='Farid Chaabane & Trestan Pillonel',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
data_files=[(".", ["LICENSE", "README.md"])],
entry_points = {
'console_scripts' : [
'assembly_finder = assembly_finder.assembly_finder:cli'
]
}
setup(
name="assembly_finder",
version=__version__,
description="Snakemake pipeline for downloading assemblies from NCBI",
url="https://github.com/metagenlab/assembly_finder",
author="Farid Chaabane & Trestan Pillonel",
author_email="[email protected]",
packages=find_packages(),
package_data={"assembly_finder": ["Snakefile", "bin/*"]},
data_files=[(".", ["LICENSE", "README.md"])],
entry_points={
"console_scripts": ["assembly_finder = assembly_finder.assembly_finder:cli"]
},
)

0 comments on commit 2ac37e0

Please sign in to comment.