Newer
Older
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="greenhost_cloud",
author="Greenhost",
author_email="info@greenhost.net",
description="Create and manipulate Greenhost VPSs via the command line or python functions.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://open.greenhost.net/greenhost/cloud-api",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: AGPL",
"Operating System :: OS Independent",
],
install_requires=['requests', 'tabulate', 'pytz']
)