1from setuptools import setup 2 3 4def main(): 5 setup() 6 7 8if __name__ == "__main__": 9 main() 10 11