-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
53 lines (48 loc) · 1.72 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
from os import path
from setuptools import setup, find_packages
import deepsig
# Get the long description from the README file
setup_dir = path.abspath(path.dirname(__file__))
with open(path.join(setup_dir, 'README.pypi.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='deepsig-biocomp',
version=deepsig.__version__,
description='DeepSig - Predictor of signal peptides in proteins based on deep learning',
keywords=['bioinformatics', 'annotation', 'bacteria', 'signal peptides'],
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
author='Castrense Savojardo',
author_email='[email protected]',
url='https://github.com/BolognaBiocomp/deepsig',
packages=find_packages(include=['deepsig']),
python_requires='>=3.8,<3.9',
include_package_data=True,
zip_safe=False,
install_requires=[
'biopython >= 1.78',
'Keras >= 2.4.3',
'tensorflow'
],
entry_points={
'console_scripts': [
'deepsig=deepsig.deepsig:main'
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Development Status :: 4 - Beta ',
'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/BolognaBiocomp/deepsig/issues',
'Source': 'https://github.com/BolognaBiocomp/deepsig'
},
)