-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (32 loc) · 1.21 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
__long_description__ = '''
HgtSIM: a simulator for horizontal gene transfer (HGT) in microbial communities
Weizhi Song ([email protected])
The Centre for Marine Bio-Innovation (CMB),
University of New South Wales, Sydney, Australia
Release history:
1.1.0 (2019-01-06):
HgtSIM can be installed with "pip install HgtSIM" now.
1.0.1 (2018-04-06):
combined the '-mixed', '-mini' and '-maxi' options to '-mixed min-max'.
1.0.0 (2017-09-16):
support for draft genome.
support for dynamic flanking sequences.
support for the 'mixed' mode.
support for the 'keep_cds' option.
'''
__version__ = '1.1.0'
setup(name="HgtSIM",
version=__version__,
long_description=__long_description__,
license="GPL3+",
author="Weizhi Song, Torsten Thomas",
author_email="[email protected]",
keywords="Bioinformatics Metagenomics HGT simulator",
description="a simulator for HGT in microbial communities",
url="https://github.com/songweizhi/HgtSIM",
packages=find_packages(exclude=['contrib','docs']),
package_data={'': ['*.r', '*.R']},
include_package_data=True,
install_requires=['biopython'],
scripts=['bin/HgtSIM'])