-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
}, | ||
) |