├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── README.md ├── setup.py └── whales_descriptors ├── __init__.py ├── do_whales.py ├── lcm.py └── mol_properties.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/setup.py -------------------------------------------------------------------------------- /whales_descriptors/__init__.py: -------------------------------------------------------------------------------- 1 | import whales_descriptors 2 | -------------------------------------------------------------------------------- /whales_descriptors/do_whales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/whales_descriptors/do_whales.py -------------------------------------------------------------------------------- /whales_descriptors/lcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/whales_descriptors/lcm.py -------------------------------------------------------------------------------- /whales_descriptors/mol_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisoniFr/whales_descriptors/HEAD/whales_descriptors/mol_properties.py --------------------------------------------------------------------------------