github.com/shravanasati/hydra@v1.0.1-0.20240122045627-1082d2ed50d2/src/boilerplates/setupContent (about)

     1  from setuptools import find_packages, setup
     2  
     3  VERSION = '1.0.0'
     4  with open("README.md") as f:
     5      README = f.read()
     6  
     7  setup(
     8      name = ":PROJECT_NAME:",
     9      version = VERSION,
    10      description = "Project summary here",
    11      long_description_content_type = "text/markdown",
    12      long_description = README,
    13      url = "https://github.com/:GITHUB:/:PROJECT_NAME:",
    14      author = ":AUTHOR_NAME:",
    15      author_email = "Your email here",
    16      packages = find_packages(),
    17      install_requires = [],
    18      license = ':LICENSE:',
    19      keywords = [],
    20      classifiers = []
    21  )