-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
45 lines (36 loc) · 1.72 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
#!/usr/bin/env python3
"""
This is the Trycycler installation script. Assuming you're in the same directory, it can be run
like this: `python3 setup.py install`, or (probably better) like this: `pip3 install .`
Copyright 2018 Ryan Wick ([email protected])
https://github.com/rrwick/Trycycler
This file is part of Trycycler. Trycycler is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version. Trycycler is distributed
in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details. You should have received a copy of the GNU General Public License along with Trycycler.
If not, see <http://www.gnu.org/licenses/>.
"""
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
# Get the program version from another file.
__version__ = '0.0.0'
exec(open('trycycler/version.py').read())
setup(name='Trycycler',
version=__version__,
description='Trycycler: a tool for producing consensus assemblies',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/rrwick/Trycycler',
author='Ryan Wick',
author_email='[email protected]',
license='GPLv3',
packages=['trycycler'],
install_requires=['edlib', 'numpy', 'scipy', 'pillow', 'pytest'],
entry_points={"console_scripts": ['trycycler = trycycler.__main__:main']},
include_package_data=True,
zip_safe=False,
python_requires='>=3.6')