forked from moonso/vcf_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.45 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# For making things look nice on pypi:
# try:
# import pypandoc
# long_description = pypandoc.convert('README.md', 'rst')
# except (IOError, ImportError):
long_description = 'Tool for parsing Variant Call Format (VCF) files. Works like a lightweight version of PyVCF.'
setup(name='vcf_parser',
version='1.6',
description='Parsing vcf files',
author = 'Mans Magnusson',
author_email = '[email protected]',
url = 'http://github.com/moonso/vcf_parser',
license = 'MIT License',
install_requires=[
'pytest',
'click'
],
packages = [
'vcf_parser',
'vcf_parser.utils',
'vcf_parser.cli',
],
keywords = [
'parser',
'vcf',
'variants'
],
entry_points = {
'console_scripts': [
'vcf_parser = vcf_parser.cli.command_line:cli'
]
},
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
long_description = long_description,
)