Skip to content

Commit

Permalink
Merge pull request #58 from GoogleCloudPlatform/lint
Browse files Browse the repository at this point in the history
fix lint errors by reformatting with black
  • Loading branch information
dhercher committed Jul 21, 2020
2 parents b99b214 + af26a4e commit f3ddefb
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,16 @@

import setuptools

name = 'google-pso-data-validator'
name = "google-pso-data-validator"
description = "A package to enable easy data validation"
version = '0.1.0'
release_status = 'Development Status :: 3 - Alpha'
version = "0.1.0"
release_status = "Development Status :: 3 - Alpha"

with open("README.md", "r") as fh:
long_description = fh.read()

dependencies = open("requirements.txt").read().strip().split("\n")
dependencies = [
v for v in dependencies if not v.startswith("#")
] # Remove comments
dependencies = [v for v in dependencies if not v.startswith("#")] # Remove comments

packages = [
"data_validation",
Expand All @@ -52,7 +50,7 @@
packages=packages,
classifiers=[
release_status,
'License :: OSI Approved :: Apache Software License',
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
Expand Down

0 comments on commit f3ddefb

Please sign in to comment.