-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (47 loc) · 1.74 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from os import path
from setuptools import setup
import referenceseeker
# Get the long description from the README file
setup_dir = path.abspath(path.dirname(__file__))
with open(path.join(setup_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='referenceseeker',
version=referenceseeker.__version__,
description='ReferenceSeeker: rapid determination of appropriate reference genomes.',
keywords=['bioinformatics', 'ngs', 'wgs', 'microbial genomics'],
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
author='Oliver Schwengers',
author_email='[email protected]',
url='https://github.com/oschwengers/referenceseeker',
packages=['referenceseeker'],
python_requires='>=3.8',
include_package_data=True,
zip_safe=False,
install_requires=[
'biopython >= 1.78',
'xopen >= 1.1.0'
],
entry_points={
'console_scripts': [
'referenceseeker=referenceseeker.app:main',
'referenceseeker_db=referenceseeker.database:main'
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English'
],
project_urls={
'Bug Reports': 'https://github.com/oschwengers/referenceseeker/issues',
'Source': 'https://github.com/oschwengers/referenceseeker'
},
)