|
5 | 5 |
|
6 | 6 |
|
7 | 7 | setup( |
8 | | - name='deeplc', |
9 | | - version='2.2.24', |
10 | | - license='apache-2.0', |
11 | | - description='DeepLC: Retention time prediction for (modified) peptides using Deep Learning.', |
| 8 | + name="deeplc", |
| 9 | + version="2.2.25", |
| 10 | + license="apache-2.0", |
| 11 | + description="DeepLC: Retention time prediction for (modified) peptides using Deep Learning.", |
12 | 12 | long_description=LONG_DESCRIPTION, |
13 | 13 | long_description_content_type="text/markdown", |
14 | | - author='Robbin Bouwmeester, Niels Hulstaert, Arthur Declercq, Ralf Gabriels, Prof. Lennart Martens, Prof. Sven Degroeve', |
15 | | - author_email='Robbin.Bouwmeester@UGent.be', |
16 | | - url='http://compomics.github.io/projects/DeepLC', |
| 14 | + author="Robbin Bouwmeester, Niels Hulstaert, Arthur Declercq, Ralf Gabriels, Prof. Lennart Martens, Prof. Sven Degroeve", |
| 15 | + author_email="Robbin.Bouwmeester@UGent.be", |
| 16 | + url="http://compomics.github.io/projects/DeepLC", |
17 | 17 | project_urls={ |
18 | | - 'Documentation': 'http://compomics.github.io/projects/DeepLC', |
19 | | - 'Source': 'https://github.com/compomics/DeepLC', |
20 | | - 'Tracker': 'https://github.com/compomics/DeepLC/issues' |
| 18 | + "Documentation": "http://compomics.github.io/projects/DeepLC", |
| 19 | + "Source": "https://github.com/compomics/DeepLC", |
| 20 | + "Tracker": "https://github.com/compomics/DeepLC/issues", |
21 | 21 | }, |
22 | 22 | packages=find_packages(), |
23 | 23 | include_package_data=True, |
24 | 24 | entry_points={ |
25 | | - 'console_scripts': [ |
26 | | - 'deeplc=deeplc.__main__:main', |
27 | | - 'deeplc-gui=deeplc.gui:start_gui', |
| 25 | + "console_scripts": [ |
| 26 | + "deeplc=deeplc.__main__:main", |
| 27 | + "deeplc-gui=deeplc.gui:start_gui", |
28 | 28 | ] |
29 | 29 | }, |
30 | 30 | keywords=[ |
31 | | - 'DeepLC', 'Proteomics', 'deep learning', 'peptides', 'retention time', |
32 | | - 'prediction' |
| 31 | + "DeepLC", |
| 32 | + "Proteomics", |
| 33 | + "deep learning", |
| 34 | + "peptides", |
| 35 | + "retention time", |
| 36 | + "prediction", |
33 | 37 | ], |
34 | 38 | classifiers=[ |
35 | 39 | "Intended Audience :: Science/Research", |
36 | 40 | "License :: OSI Approved :: Apache Software License", |
37 | 41 | "Operating System :: OS Independent", |
38 | 42 | "Programming Language :: Python :: 3", |
39 | 43 | "Topic :: Scientific/Engineering :: Bio-Informatics", |
40 | | - "Development Status :: 4 - Beta" |
| 44 | + "Development Status :: 4 - Beta", |
41 | 45 | ], |
42 | 46 | install_requires=[ |
43 | | - 'setuptools>=42.0.1', |
44 | | - 'tensorflow>=2.2,<2.13.0', |
45 | | - 'scipy>=1.4.1,<2', |
46 | | - 'numpy>=1.17,<2', |
47 | | - 'pandas>=0.25,<2', |
48 | | - 'matplotlib>=3,<4', |
49 | | - 'h5py>=2.10.0,<4', |
50 | | - 'pygam>=0.8.0,<1', |
51 | | - 'scikit-learn>=0.24.0,<2', |
52 | | - 'deeplcretrainer>=0.1,<1', |
53 | | - 'psm_utils>=0.2.3,<1', |
54 | | - 'hdf5plugin>=4.1.1' |
| 47 | + "setuptools>=42.0.1", |
| 48 | + "tensorflow>=2.2,<2.13.0", |
| 49 | + "scipy>=1.4.1,<2", |
| 50 | + "numpy>=1.17,<2", |
| 51 | + "pandas>=0.25,<2", |
| 52 | + "matplotlib>=3,<4", |
| 53 | + "h5py>=2.10.0,<4", |
| 54 | + "pygam>=0.8.0,<1", |
| 55 | + "scikit-learn>=0.24.0,<2", |
| 56 | + "deeplcretrainer>=0.1,<1", |
| 57 | + "psm_utils>=0.2.3,<1", |
| 58 | + "hdf5plugin>=4.1.1", |
55 | 59 | ], |
56 | 60 | extras_require={ |
57 | 61 | "gui": ["gooey>=1.0"], |
58 | 62 | "plot": ["plotly>=5"], |
59 | 63 | }, |
60 | | - python_requires='>=3.7', |
| 64 | + python_requires=">=3.7", |
61 | 65 | ) |
0 commit comments