Skip to content

Commit

Permalink
Bump version to v0.1 and tag first release (#1)
Browse files Browse the repository at this point in the history
* Bump version to v0.1 and tag first release

- Removed unnecessary constants
- Bump version to v0.1 and tag first public release
  • Loading branch information
spillai authored May 11, 2020
1 parent 915caa1 commit 8af464a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions dgp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
# Copyright 2019 Toyota Research Institute. All rights reserved.
import os

__version__ = '0.0.1'
__version__ = '0.1'

DGP_PATH = os.getenv('DGP_PATH', default=os.getenv('HOME'))
DGP_DATA_DIR = os.path.join(DGP_PATH, '.dgp')
DGP_CACHE_DIR = os.path.join(DGP_DATA_DIR, 'cache')
DGP_DATASETS_CACHE_DIR = os.path.join(DGP_DATA_DIR, 'datasets')

TRI_DGP_S3_BUCKET = "TRI_INTERNAL_ONLY"
TRI_DGP_FOLDER_PREFIX = "dgp/"
TRI_RAW_FOLDER_PREFIX = "raw/"
TRI_DGP_S3_BUCKET_URL = "s3://{}/{}".format(TRI_DGP_S3_BUCKET, TRI_DGP_FOLDER_PREFIX)
TRI_RAW_S3_BUCKET_URL = "s3://{}/{}".format(TRI_DGP_S3_BUCKET, TRI_RAW_FOLDER_PREFIX)
TRI_DGP_JSON_PREFIX = "dataset_v"

# DGP Directory structure constants
Expand Down

0 comments on commit 8af464a

Please sign in to comment.