-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.88 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""Description
Setup script to install ngsarchiver package
Copyright (C) University of Manchester 2023 Peter Briggs
"""
# Hack to acquire all scripts that we want to
# install into 'bin'
from glob import glob
scripts = ['bin/archiver']
for pattern in ('bin/*.py',):
scripts.extend(glob(pattern))
# Installation requirements
install_requires = []
# Setup for installation etc
from setuptools import setup
import ngsarchiver
setup(name = "ngsarchiver",
version = ngsarchiver.get_version(),
description = 'Utility to archive and manage BCF NGS data',
long_description = """Utilities to archive, interrogate and recover NGS data held by the BCF from Illumina and SOLiD platforms""",
url = 'https://github.com/fls-bioinformatics-core/ngsarchiver',
maintainer = 'Peter Briggs',
maintainer_email = '[email protected]',
packages = ['ngsarchiver',],
license = 'AFL-3',
# Pull in dependencies
install_requires = install_requires,
# Enable 'python setup.py test'
test_suite='nose.collector',
tests_require=['nose'],
# Scripts
scripts = scripts,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Academic Free License (AFL)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
include_package_data=True,
zip_safe = False)