aliabd
full demo working with old graido
7e3e85d
raw history blame
No virus
643 Bytes
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='summertime',
version='0.1',
scripts=['summertime'] ,
author="LILY Lab",
author_email="mutethia",
description="A Docker and AWS utility package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/javatechy/dokr",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)