-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 918 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 distutils.util import convert_path
main_ns = {}
ver_path = convert_path('bart/scripts/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(
name="bart",
version=main_ns['__version__'],
author="Tom Stanton",
author_email="[email protected]",
description="BActerial Read Typer",
url="https://github.com/tomdstanton/bart",
project_urls={
"Bug Tracker": "https://github.com/tomdstanton/bart/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
],
packages=find_packages(),
python_requires=">=3.7",
scripts=['bart/bart', 'bart/bart-update', 'bart/bart-profile'],
keywords='microbial genomics amr virulence',
install_requires='requests',
zip_safe=False,
)