Coverage for setup.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-13 17:26 +0000

1import setuptools 

2 

3with open("README.md", "r") as fh: 

4 long_description = fh.read() 

5 

6setuptools.setup( 

7 name="biobb_model", 

8 version="4.1.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 install_requires=[ 

22 'biobb_common==4.1.0', 

23 'biobb_structure_checking>=3.13.4', 

24 'xmltodict' 

25 ], 

26 python_requires='>=3.8', 

27 entry_points={ 

28 "console_scripts": [ 

29 "checking_log = biobb_model.model.checking_log:main", 

30 "fix_chirality = biobb_model.model.fix_chirality:main", 

31 "fix_amides = biobb_model.model.fix_amides:main", 

32 "fix_altlocs = biobb_model.model.fix_altlocs:main", 

33 "fix_ssbonds = biobb_model.model.fix_ssbonds:main", 

34 "fix_backbone = biobb_model.model.fix_backbone:main", 

35 "fix_side_chain = biobb_model.model.fix_side_chain:main", 

36 "mutate = biobb_model.model.mutate:main", 

37 "fix_pdb = biobb_model.model.fix_pdb:main", 

38 ] 

39 }, 

40 classifiers=[ 

41 "Development Status :: 5 - Production/Stable", 

42 "Programming Language :: Python :: 3.8", 

43 "Programming Language :: Python :: 3.9", 

44 "Programming Language :: Python :: 3.10", 

45 "License :: OSI Approved :: Apache Software License", 

46 "Operating System :: MacOS :: MacOS X", 

47 "Operating System :: POSIX", 

48 "Operating System :: Unix" 

49 ], 

50)