-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 900 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
from setuptools import setup, find_packages
from pathlib import Path
import os
import sys
from mintyper.version import __version__
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
sys.path = [os.path.join(os.path.dirname(os.path.realpath(__file__)),'..')] + sys.path
setup(
name='mintyper',
long_description=long_description,
long_description_content_type='text/markdown',
version=__version__,
packages=find_packages(),
data_files=[],
include_package_data=True,
url='https://https://github.com/MBHallgren/mintyper',
license='',
install_requires=(),
author='Malte B. Hallgren',
scripts=['bin/mintyper'],
author_email='[email protected]',
description='mintyper: an outbreak-detection method for accurate and rapid SNP'
' typing of clonal clusters with noisy long reads.'
)