Skip to content

Commit

Permalink
Some fixes in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
druvus committed Oct 10, 2016
1 parent 4eaa811 commit 1d19fc7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(name='abruijn',
version='0.4b',
Expand All @@ -7,6 +7,13 @@
author='Mikhail Kolmogorov',
author_email = '',
license='BSD-3-Clause',
packages=find_packages(),
entry_points={
'console_scripts': [
'abruijn = abruijn.main:main'
]
},
# Could skip abruin.py in the entrypoint works
scripts = ['abruijn.py', 'bin/abruijn-assemble', 'bin/abruijn-polish'],
data_files=['resource/nano_homopolymers.mat', 'resource/nano_substitutions.mat', 'resource/p6c4_homopolymers.mat', 'resource/p6c4_substitutions.mat', 'resource/pacbio_homopolymers.mat', 'resource/pacbio_substitutions.mat']
)
Expand Down

0 comments on commit 1d19fc7

Please sign in to comment.