-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (36 loc) · 1.05 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
#!/usr/bin/env python3
import sys
from setuptools import setup, find_packages
from hlama import __version__
setup(
name='hlama',
version=__version__,
description='HLA-typing based HTS sample matching',
license='MIT',
author='Manuel Holtgrewe, Clemens Messerschmidt',
author_email=('[email protected], '
url='https://github.com/bihealth/hlama',
packages=find_packages(),
entry_points={
'console_scripts': [
'hlama = hlama.app:main',
],
},
install_requires=[
'snakemake==3.7.1',
],
package_data={
'': ['Snakefile', '*.ini', '*.fasta.gz'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
zip_safe=False,
)