-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (41 loc) · 1007 Bytes
/
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
"""
setup.py
~~~~~~~~~~~~~
:copyright: (c) 2016 Sander Bollen
:copyright: (c) 2016 Leiden University Medical Center
:license: MIT
"""
from os.path import abspath, dirname, join
from setuptools import setup
readme_file = join(abspath(dirname(__file__)), "README.rst")
with open(readme_file) as desc_handle:
long_desc = desc_handle.read()
setup(
name="afplot",
version="0.2.1",
description="Plot allele frequencies in VCF files",
long_description=long_desc,
author="Sander Bollen",
author_email="[email protected]",
url="https://github.com/sndrtj/afplot",
license="MIT",
packages=["afplot"],
install_requires=[
"click",
"numpy",
"matplotlib",
"pandas",
"seaborn",
"progressbar2",
"pysam",
"pyvcf"
],
entry_points={
"console_scripts": [
"afplot = afplot.cli:main"
]
},
classifiers=[
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)