Skip to content

Commit

Permalink
docs: clean setup (#272)
Browse files Browse the repository at this point in the history
* docs: cleaning requirements file away and using setup to avoid pypi build issues and for better clarity

* docs: cleaning requirements file away and using setup to avoid pypi build issues and for better clarity
  • Loading branch information
dhercher committed Jun 28, 2021
1 parent fd90096 commit 08d393b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
22 changes: 0 additions & 22 deletions requirements.txt

This file was deleted.

26 changes: 24 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,30 @@
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 = [
# Dependency corrections from our requirements
"attrs==20.3.0",
"grpcio==1.35.0",
"lazy-object-proxy==1.4.3",
"marshmallow==3.10.0",
# Core dependencies
"google-api-python-client==1.12.8",
"ibis-framework==1.4.0",
"impyla==0.16.3",
"SQLAlchemy==1.3.22",
"PyMySQL==1.0.2",
"psycopg2-binary==2.8.6",
"PyYAML==5.4.1",
"pandas==1.2.3",
"proto-plus==1.13.0",
"pyarrow==3.0.0",
"pydata-google-auth==1.1.0",
"google-cloud-bigquery==2.11.0",
"google-cloud-bigquery-storage==2.3.0",
"google-cloud-spanner==3.1.0",
"setuptools>=34.0.0",
"jellyfish==0.8.2",
]

extras_require = {
"apache-airflow": "1.10.11",
Expand Down

0 comments on commit 08d393b

Please sign in to comment.