Skip to content

Commit

Permalink
Prep asset-0.1.0 release. (#5988)
Browse files Browse the repository at this point in the history
Closes #5985.
  • Loading branch information
tseaver authored Sep 17, 2018
1 parent 33cd1b9 commit 28abd1a
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
10 changes: 10 additions & 0 deletions asset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-asset/#history

## 0.1.0

Initial release.

1 change: 1 addition & 0 deletions asset/docs/changelog.md
10 changes: 10 additions & 0 deletions asset/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,13 @@ Api Reference

gapic/v1beta1/api
gapic/v1beta1/types

Changelog
---------

For a list of all ``google-cloud-asset`` releases:

.. toctree::
:maxdepth: 2

changelog
15 changes: 13 additions & 2 deletions asset/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,38 @@

import setuptools

# Package metadata.

name = 'google-cloud-cloudasset'
description = 'Cloud Asset API API client library'
version = '0.1.0'
release_status = '3 - Alpha'
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
# 'Development Status :: 5 - Production/Stable'
release_status = 'Development Status :: 3 - Alpha'
dependencies = [
'google-api-core[grpc] >= 1.1.0, < 2.0.0dev',
'enum34; python_version < "3.4"',
'grpc-google-iam-v1<0.12dev,>=0.11.4',
]

# Setup boilerplate below this line.

package_root = os.path.abspath(os.path.dirname(__file__))

readme_filename = os.path.join(package_root, 'README.rst')
with io.open(readme_filename, encoding='utf-8') as readme_file:
readme = readme_file.read()

# Only include packages under the 'google' namespace. Do not include tests,
# benchmarks, etc.
packages = [
package for package in setuptools.find_packages()
if package.startswith('google')
]

# Determine which namespaces are needed.
namespaces = ['google']
if 'google.cloud' in packages:
namespaces.append('google.cloud')
Expand All @@ -59,9 +70,9 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Topic :: Internet',
],
Expand Down

0 comments on commit 28abd1a

Please sign in to comment.