Skip to content

Commit

Permalink
Add forgotten setup.py for python package
Browse files Browse the repository at this point in the history
  • Loading branch information
AlnisS committed Jan 5, 2024
1 parent 3eb9ac5 commit b039b49
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup

# TODO: add error checking and/or automated build if /lost is missing
# TODO: handle multiple architectures

setup(
name='lost',
version='0.0.0',
packages=['lost'],
package_dir={'lost': 'lostpy'},
include_package_data=True,
package_data={'lost': [
'lost', # the LOST executable
'bright-star-catalog.tsv', # the stars are needed...
'tmp/tmp_database.dat', # dummy database so pip uninstall deletes generated database
]},
install_requires=[
'imageio',
],
zip_safe=False
)

0 comments on commit b039b49

Please sign in to comment.