-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
32 lines (30 loc) · 967 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
30
31
32
import os
import shutil
import sys
import glob
from setuptools import setup, find_packages
setup(
name='circlator',
version='1.5.5',
description='circlator: a tool to circularise genome assemblies',
packages = find_packages(),
package_data={'circlator': ['data/*']},
author='Martin Hunt, Nishadi De Silva, (this small edit is from Nicola De Maio) ',
author_email='[email protected]',
url='https://github.com/sanger-pathogens/circlator',
scripts=glob.glob('scripts/*'),
tests_require=['pytest'],
install_requires=[
'openpyxl == 2.6.4',
'pyfastaq >= 3.12.1',
'pysam >= 0.8.1',
'pymummer>=0.9.0',
],
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
)