-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (19 loc) · 960 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
#!/usr/bin/env python
import setuptools
# Read version number into a dictionary
version = {}
with open('paragone/version.py') as fp:
exec(fp.read(), version)
resolve_paralogs_scripts = ['paragone']
resolve_paralogs_description = 'Paralogy resolution using Yang and Smith algorithms'
resolve_paralogs_url = 'https://github.com/chrisjackson-pellicle/yang_and_smith_paralogy_resolution'
resolve_paralogs_entry_points = {'console_scripts': ['paragone = paragone.paragone_main:main']}
setuptools.setup(name='paragone',
version=version['__version__'],
packages=setuptools.find_packages(),
author='Chris Jackson',
author_email='[email protected]',
description=resolve_paralogs_description,
keywords='paralog resolution, orthology inference',
url=resolve_paralogs_url,
entry_points=resolve_paralogs_entry_points)