-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 987 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
from setuptools import setup
def readme():
with open('README.md' as f:
return f.read()
setup(
name='bioinf_workflows',
version='0.2',
description='Collection of bioinformatics workflows to analyze next-generation sequening data',
long_description=readme(),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
keywords='bioinformatics ngs screen',
url='https://github.com/sp00nman/bioinf_workflows',
author='Fiorella Schischlik',
author_email='[email protected]',
license="GPL2",
install_requires=[
'pandas'
],
scripts=[
'bin/gt_screen_workflow.py',
'bin/count_insertions.R',
'bin/fisher-test.R',
'bin/plot_screen.R'
],
include_package_data=True
]
)