Coverage for setup.py: 0%
4 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-28 11:32 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-28 11:32 +0000
1import setuptools
3with open("README.md", "r") as fh:
4 long_description = fh.read()
6setuptools.setup(
7 name="biobb_model",
8 version="5.0.0",
9 author="Biobb developers",
10 author_email="pau.andrio@bsc.es",
11 description="Biobb_model is the Biobb module collection to check and model 3d structures, create mutations or reconstruct missing atoms.",
12 long_description=long_description,
13 long_description_content_type="text/markdown",
14 keywords="Bioinformatics Workflows BioExcel Compatibility",
15 url="https://github.com/bioexcel/biobb_model",
16 project_urls={
17 "Documentation": "http://biobb-model.readthedocs.io/en/latest/",
18 "Bioexcel": "https://bioexcel.eu/",
19 },
20 packages=setuptools.find_packages(exclude=["docs", "test"]),
21 package_data={"biobb_model": ["py.typed"]},
22 install_requires=[
23 "biobb_common==5.0.0",
24 "biobb_structure_checking>=3.13.5",
25 "xmltodict",
26 ],
27 python_requires=">=3.9",
28 entry_points={
29 "console_scripts": [
30 "checking_log = biobb_model.model.checking_log:main",
31 "fix_chirality = biobb_model.model.fix_chirality:main",
32 "fix_amides = biobb_model.model.fix_amides:main",
33 "fix_altlocs = biobb_model.model.fix_altlocs:main",
34 "fix_ssbonds = biobb_model.model.fix_ssbonds:main",
35 "fix_backbone = biobb_model.model.fix_backbone:main",
36 "fix_side_chain = biobb_model.model.fix_side_chain:main",
37 "mutate = biobb_model.model.mutate:main",
38 "fix_pdb = biobb_model.model.fix_pdb:main",
39 ]
40 },
41 classifiers=[
42 "Development Status :: 5 - Production/Stable",
43 "Programming Language :: Python :: 3.9",
44 "License :: OSI Approved :: Apache Software License",
45 "Operating System :: MacOS :: MacOS X",
46 "Operating System :: POSIX",
47 "Operating System :: Unix",
48 ],
49)