-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
54 lines (49 loc) · 1.79 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
53
54
from os import path
from setuptools import setup
import platon
# 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='cb-platon',
version=platon.__version__,
description='Platon: identification and characterization of bacterial plasmid contigs from short-read draft assemblies.',
keywords=['bioinformatics', 'plasmids', 'wgs'],
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
author='Oliver Schwengers',
author_email='[email protected]',
url='https://github.com/oschwengers/platon',
packages=['platon'],
python_requires='>=3.8',
include_package_data=True,
zip_safe=False,
install_requires=[
'biopython >= 1.78'
],
entry_points={
'console_scripts': [
'platon=platon.platon:main'
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'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/platon/issues',
'Source': 'https://github.com/oschwengers/platon'
},
)