forked from merenlab/illumina-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (35 loc) · 1.36 KB
/
setup.py
File metadata and controls
43 lines (35 loc) · 1.36 KB
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
39
40
41
42
43
import os
import uuid
import glob
from setuptools import setup, find_packages
from pip.req import parse_requirements
if os.environ.get('USER','') == 'vagrant':
del os.link
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
setup(
name = "illumina-utils",
version = open('VERSION').read().strip(),
description = "A library and collection of scripts to work with Illumina paired-end data (for CASAVA 1.8+).",
author = u"A. Murat Eren",
author_email = "meren@mbl.edu",
license = "GPLv3+",
url = "https://github.com/meren/illumina-utils",
packages = find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
],
scripts = [script for script in glob.glob('scripts/*') if not script.endswith('-OBSOLETE')],
include_package_data = True,
package_data={'': ['examples/']},
install_requires=reqs,
)