-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
24 lines (19 loc) · 873 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
#!/usr/bin/env python
import setuptools
# Read version number into a dictionary
version = {}
with open('hybpiper/version.py') as fp:
exec(fp.read(), version)
hybpiper_scripts = ['hybpiper']
hybpiper_description = 'Recovery of target gene sequences from bait-capture data'
hybpiper_url = 'https://github.com/mossmatters/HybPiper'
hybpiper_entry_points = {'console_scripts': ['hybpiper = hybpiper.hybpiper_main:main']}
setuptools.setup(name='hybpiper',
version=version['__version__'],
packages=setuptools.find_packages(),
author='Chris Jackson, Matt Johnson',
author_email='chris.jackson@rbg.vic.gov.au',
description=hybpiper_description,
keywords='target-capture phylogeny',
url=hybpiper_url,
entry_points=hybpiper_entry_points)