comparison setup.py @ 10:7cc954f15149 draft

planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline/tree/galaxy commit 2d65c72740d0439b8385378a890b3763d717f152-dirty
author kls286
date Wed, 29 Mar 2023 17:53:07 +0000
parents cbbe42422d56
children
comparison
equal deleted inserted replaced
9:cc597d6571bc 10:7cc954f15149
30 with open("README.md", "r") as fh: 30 with open("README.md", "r") as fh:
31 long_description = fh.read() 31 long_description = fh.read()
32 32
33 setuptools.setup( 33 setuptools.setup(
34 name="ChessAnalysisPipeline", 34 name="ChessAnalysisPipeline",
35 version="0.0.1", 35 version="0.0.2",
36 author="Keara Soloway, Rolf Verberg, Valentin Kuznetsov", 36 author="Keara Soloway, Rolf Verberg, Valentin Kuznetsov",
37 author_email="", 37 author_email="",
38 description="CHESS analysis pipeline framework", 38 description="CHESS analysis pipeline framework",
39 long_description=long_description, 39 long_description=long_description,
40 long_description_content_type="text/markdown", 40 long_description_content_type="text/markdown",
41 url="https://github.com/CHESSComputing/ChessAnalysisPipeline", 41 url="https://github.com/CHESSComputing/ChessAnalysisPipeline",
42 packages=['CHAP', 'MLaaS'], 42 packages=['CHAP', 'MLaaS'],
43 package_dir={'CHAP': 'CHAP', 'MLaaS': 'MLaaS'}, 43 package_dir={'CHAP': 'CHAP', 'MLaaS': 'MLaaS'},
44 package_data={'examples': data_files}, 44 package_data={'examples': data_files},
45 scripts=['scripts/CHAP'], 45 entry_points={'console_scripts': ['CHAP = CHAP.runner:main']},
46 classifiers=[ 46 classifiers=[
47 "Programming Language :: Python :: 3", 47 "Programming Language :: Python :: 3",
48 "License :: OSI Approved :: MIT License", 48 "License :: OSI Approved :: MIT License",
49 "Operating System :: OS Independent", 49 "Operating System :: OS Independent",
50 ], 50 ],