├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── doc └── starborn_examples.ipynb ├── requirements.txt ├── setup.py └── starborn ├── __init__.py └── core.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/README.md -------------------------------------------------------------------------------- /doc/starborn_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/doc/starborn_examples.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | altair>=2.0 2 | pandas 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/setup.py -------------------------------------------------------------------------------- /starborn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/starborn/__init__.py -------------------------------------------------------------------------------- /starborn/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCharmers/starborn/HEAD/starborn/core.py --------------------------------------------------------------------------------