-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (50 loc) · 1.46 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
#!/usr/bin/env python3
#
# Copyright (C) 2017-2022
#
__author__ = 'Mobidic'
__authors__ = [
'Henri Pegeot',
'Kevin Yauy',
'Charles Van Goethem',
'Thomas Guignard',
'David Baux'
]
__copyright__ = 'Copyright (C) 2017-2022'
__license__ = 'Academic License Agreement'
__version__ = '1.3.0'
__email__ = 'c-vangoethem@chu-montpellier.fr'
__status__ = 'prod'
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mobidic-mpa",
version=__version__,
author=__author__,
author_email=__email__,
description="MPA: MoBiDiC Prioritization Algorithm",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://mobidic.github.io/MPA/",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
'vcfpy>=0.13.4',
'tqdm>=4.59.0',
'pysam>=0.19.1'
],
scripts=['scripts/mpa'],
project_urls={ # Optional
'Bug Reports': 'https://github.com/mobidic/MPA/issues',
'Source': 'https://github.com/mobidic/MPA',
}
)