Skip to content
Snippets Groups Projects
setup.py 722 B
Newer Older
  • Learn to ignore specific revisions
  • import setuptools
    
    with open("README.md", "r") as fh:
        long_description = fh.read()
    
    setuptools.setup(
        name="greenhost_cloud",
    
        version="0.1.1",
    
        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']
    )