-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathsetup.py
executable file
·36 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
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
requirements = [line.strip() for line in open('requirements.txt')]
setup(
name='guideseq',
version='0.9.0',
description="An easy to use bioinformatic pipeline for the GUIDE-seq assay.",
author="Shengdar Q Tsai, Martin Aryee, Ved V Topkar",
url='https://github.com/vedtopkar/guideseq',
packages=[
'guideseq',
],
package_dir={'guideseq':
'guideseq'},
install_requires=requirements,
license="AGPL",
keywords='guideseq',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: Unix',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
]
)