forked from d-cameron/biodaniel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 882 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
from distutils.core import setup
LONG_DESCRIPTION = \
'''The program reads one or more input FASTA files.
For each file it computes a variety of statistics, and then
prints a summary of the statistics as output.
The goal is to provide a solid foundation for new bioinformatics command line tools,
and is an ideal starting place for new projects.'''
setup(
name='biodaniel',
version='0.1.0.0',
author='Daniel Cameron',
author_email='[email protected]',
packages=['biodaniel'],
package_dir={'biodaniel': 'biodaniel'},
entry_points={
'console_scripts': ['biodaniel = biodaniel.biodaniel:main']
},
url='https://github.com/bjpop/biodaniel',
license='LICENSE',
description=('A prototypical bioinformatics command line tool'),
long_description=(LONG_DESCRIPTION),
install_requires=["biopython"],
)