-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1.02 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
from distutils.core import setup
setup(
name = 'apobec',
packages = ['apobec'],
version = '0.6',
license='MIT',
description = 'scripts for mutations counting in deep sequencing data',
author = 'Yuriy Babin',
author_email = '[email protected]',
url = 'https://github.com/babinyurii/apobec',
download_url = 'https://github.com/babinyurii/apobec/archive/refs/tags/v_0.6.tar.gz',
keywords = ['bioinformatics', 'mutation', 'apobec'],
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',
],
)