-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.99 KB
/
setup.py
File metadata and controls
55 lines (51 loc) · 1.99 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
44
45
46
47
48
49
50
51
52
53
54
55
from os import path
from setuptools import setup, find_packages
import bakrep
# 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='bakrep-cli',
version=bakrep.__version__,
description='BakRep CLI: a commandline tool for the batch download of BakRep datasets',
keywords=['bioinformatics', 'annotation', 'bacteria', 'genomes', 'bakrep'],
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
author='Lukas Jelonek',
author_email='lukas.jelonek@computational.bio.uni-giessen.de',
url='https://bakrep.computational.bio',
packages=find_packages(include=['bakrep']),
python_requires='>=3.9',
include_package_data=False,
zip_safe=False,
install_requires=[
'requests >= 2.32'
],
entry_points={
'console_scripts': [
'bakrep=bakrep.cli:entrypoint'
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'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={
'Documentation': 'https://github.com/ag-computational-bio/bakrep-cli',
'Source': 'https://github.com/ag-computational-bio/bakrep-cli',
'Bug Reports': 'https://github.com/ag-computational-bio/bakrep-cli/issues',
'CI': 'https://github.com/ag-computational-bio/bakrep-cli/actions'
},
)