-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (40 loc) · 1.48 KB
/
setup.py
File metadata and controls
executable file
·43 lines (40 loc) · 1.48 KB
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
# -*- coding: utf-8 -*-
import pathlib
from setuptools import setup
import haplotype_plot
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='haplotype_plot',
version=haplotype_plot.version,
python_requires='>=3',
long_description=README,
long_description_content_type="text/markdown",
packages=['haplotype_plot', 'haplotype_plot.tests'],
url='https://github.com/neobernad/haplotype_plot',
license='MIT',
author='José Antonio Bernabé-Díaz',
author_email='joseantonio.bernabe1@um.com',
entry_points={
'console_scripts': [
'haplotype_plot = haplotype_plot.main:main',
]
},
description='Generates haplotype plots from VCF files.',
install_requires=['scikit-allel', 'h5py==2.10.0', ' PyVCF==0.6.8', 'numpy', 'matplotlib', 'seaborn', 'pathlib', 'Cython'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6'
]
)