diff --git a/CHANGELOG.md b/CHANGELOG.md index 1697352..ff34138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.1.1](https://www.github.com/googleapis/python-org-policy/compare/v0.1.0...v0.1.1) (2020-05-08) + + +### Bug Fixes + +* fix setup.py ([d18203a](https://www.github.com/googleapis/python-org-policy/commit/d18203af0f7b2728ccd0695ef32cc0508fafce4c)) + ## 0.1.0 (2020-05-07) diff --git a/setup.py b/setup.py index 50d629a..874bf2c 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright 2020 Google LLC +# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,13 +16,22 @@ import os import setuptools -from setuptools import setup, find_packages + +# Package metadata. name = "google-cloud-org-policy" -description = "Google Cloud Organization Policy Protos" -version = "0.1.0" +description = "Google Cloud Org Policy Protobufs" +version = "0.1.1" +# Should be one of: +# 'Development Status :: 3 - Alpha' +# 'Development Status :: 4 - Beta' +# 'Development Status :: 5 - Production/Stable' release_status = "Development Status :: 4 - Beta" -dependencies = ["google-api-core[grpc] >= 1.14.0, < 2.0.0dev"] +dependencies = [ + "google-api-core[grpc] >= 1.14.0, < 2.0.0dev", +] + +# Setup boilerplate below this line. package_root = os.path.abspath(os.path.dirname(__file__)) @@ -41,12 +50,15 @@ if "google.cloud" in packages: namespaces.append("google.cloud") - setuptools.setup( name=name, version=version, + description=description, + long_description=readme, author="Google LLC", author_email="googleapis-packages@google.com", + license="Apache 2.0", + url="https://github.com/googleapis/python-org-policy", classifiers=[ release_status, "Intended Audience :: Developers", @@ -57,16 +69,14 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: Implementation :: CPython", + "Operating System :: OS Independent", + "Topic :: Internet", ], - description=description, - long_description=readme, - long_description_content_type="text/markdown", + platforms="Posix; MacOS X; Windows", + packages=packages, + namespace_packages=namespaces, install_requires=dependencies, - license="Apache-2.0", - packages=find_packages(), python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", - namespace_packages=packages, - url="https://github.com/googleapis/python-org-policy", include_package_data=True, -) + zip_safe=False, +) \ No newline at end of file