forked from HadrienG/InSilicoSeq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (27 loc) · 880 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
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from iss.version import __version__
from setuptools import setup, find_packages
url = 'https://github.com/HadrienG/InSilicoSeq'
with open('README.md') as f:
long_description = f.read()
setup(
name='InSilicoSeq',
version=__version__,
description='a sequencing simulator',
long_description=long_description,
long_description_content_type='text/markdown',
url=url,
download_url=url + '/tarball/' + __version__,
author='Hadrien Gourlé',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
tests_require=['nose'],
install_requires=['numpy', 'scipy', 'biopython', 'pysam>=0.15.1', 'future',
'joblib', 'requests'],
include_package_data=True,
entry_points={
'console_scripts': ['iss = iss.app:main'],
}
)