Hide keyboard shortcuts

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

#!/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" 

)