-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (33 loc) · 1.23 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
# this import is a quick fix of warning 'install_requires"
# https://stackoverflow.com/questions/8295644/pypi-userwarning-unknown-distribution-option-install-requires
from distutils.core import setup
import setuptools
setup(
name = 'crispr_cas9',
packages = ['crispr_cas9'],
version = '0.3.4',
license='MIT',
description = 'script for indels counting in sequencing data',
author = 'Yuriy Babin',
author_email = 'babin.yurii@gmail.com',
url = 'https://github.com/babinyurii/crispr_cas9',
download_url = 'https://github.com/babinyurii/crispr_cas9/archive/refs/tags/v_0.3.4.tar.gz',
keywords = ['bioinformatics', 'indels', 'sequencing', 'NGS'],
install_requires=[
'pandas',
'biopython',
'matplotlib',
'numpy',
'seaborn'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)