Mercurial > repos > bimib > cobraxy
comparison COBRAxy/setup.py @ 450:d9a9e909cd9e draft
Uploaded
author | francesco_lapi |
---|---|
date | Thu, 11 Sep 2025 20:01:42 +0000 |
parents | fa041ec0b755 |
children | 5fcbde1f92f7 |
comparison
equal
deleted
inserted
replaced
449:e3ef5380c727 | 450:d9a9e909cd9e |
---|---|
11 url='https://github.com/CompBtBs/COBRAxy.git', | 11 url='https://github.com/CompBtBs/COBRAxy.git', |
12 license='', | 12 license='', |
13 packages=find_packages(include=["utils", "utils.*"]), | 13 packages=find_packages(include=["utils", "utils.*"]), |
14 py_modules=[ | 14 py_modules=[ |
15 'custom_data_generator', | 15 'custom_data_generator', |
16 'flux_simulation', | 16 'ras_generator', |
17 'flux_to_map', | 17 'rps_generator', |
18 'marea_cluster', | 18 'marea_cluster', |
19 'marea', | 19 'marea', |
20 'ras_generator', | |
21 'ras_to_bounds', | 20 'ras_to_bounds', |
22 'rps_generator' | 21 'flux_simulation', |
22 'flux_to_map' | |
23 ], | 23 ], |
24 include_package_data=True, | 24 include_package_data=True, |
25 install_requires=[ | 25 install_requires=[ |
26 'cairosvg==2.7.1', | 26 'cairosvg==2.7.1', |
27 'cobra==0.29.0', | 27 'cobra==0.29.0', |
39 'pydeseq2==0.5.1' | 39 'pydeseq2==0.5.1' |
40 ], | 40 ], |
41 entry_points={ | 41 entry_points={ |
42 'console_scripts': [ | 42 'console_scripts': [ |
43 'custom_data_generator=custom_data_generator:main', | 43 'custom_data_generator=custom_data_generator:main', |
44 'flux_simulation=flux_simulation:main', | 44 'ras_generator=ras_generator:main', |
45 'flux_to_map=flux_to_map:main', | 45 'rps_generator=rps_generator:main', |
46 'marea_cluster=marea_cluster:main', | 46 'marea_cluster=marea_cluster:main', |
47 'marea=marea:main', | 47 'marea=marea:main', |
48 'ras_generator=ras_generator:main', | |
49 'ras_to_bounds=ras_to_bounds:main', | 48 'ras_to_bounds=ras_to_bounds:main', |
50 'rps_generator=rps_generator:main' | 49 'flux_simulation=flux_simulation:main', |
50 'flux_to_map=flux_to_map:main' | |
51 ], | 51 ], |
52 }, | 52 }, |
53 classifiers=[ | 53 classifiers=[ |
54 'Programming Language :: Python :: 3', | 54 'Programming Language :: Python :: 3', |
55 'License :: OSI Approved :: MIT License', | 55 'License :: OSI Approved :: MIT License', |