-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (35 loc) · 1.16 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
from setuptools import setup, find_packages
from virheat import __version__, _program
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='virheat',
long_description=long_description,
long_description_content_type='text/markdown',
version=__version__,
python_requires=">=3.9",
license_files=('LICENSE'),
packages=find_packages(),
install_requires=[
"matplotlib>=3.5.1,<=3.8.0",
"numpy>=1.23.3",
"pandas>=1.4.4"
],
description='virHEAT creates a heatmap from vcf files and maps positions on to a reference genome.',
url='https://github.com/jonas-fuchs/virHEAT',
author='Dr. Jonas Fuchs',
author_email='[email protected]',
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
],
entry_points="""
[console_scripts]
{program} = virheat.command:main
""".format(program=_program),
include_package_data=True,
keywords=[],
zip_safe=False
)