Coverage for setup.py : 0%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
#!/usr/bin/env python import os.path from setuptools import setup
version = "0.1.0" with open("./python/astro_metadata_translator/version.py", "w") as f: print(f""" __all__ = ("__version__", ) __version__='{version}'""", file=f)
# read the contents of your README file this_directory = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(this_directory, "README.md"), encoding='utf-8') as f: long_description = f.read()
setup( version=f"{version}", long_description=long_description, long_description_content_type="text/markdown" ) |