Metadata-Version: 2.1
Name: ci-cmg-cruise-schema-orm
Version: 1.0.1.dev20200928221722
Summary: ORM classes for the cruise schema
Home-page: https://github.com/ci-cmg/cruise-schema-orm-py
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown
Requires-Dist: JayDeBeApi (==1.2.3)
Requires-Dist: cx-Oracle (==7.3.0)

# ci-cmg-cruise-schema-orm

## Setting Up a Virtual Environment with pyenv
```bash
pyenv virtualenv 2.7.18 cruise-schema-orm-2.7.18
pyenv local cruise-schema-orm-2.7.18
```

## Building
Since this project can use JDBC divers, Apache Maven is used to build and test the library.
Java 8+ and Maven must be installed and on the PATH.  JAVA_HOME and MAVEN_HOME
environment variables should be set.

This project uses a docker container running an Oracle database to run tests.  Docker must be installed.

The tests use the Oracle JDBC driver.  This driver is not available from the Maven central repository.  Download the 
driver from Oracle and either
host this in a remote private repository, or manually add it to your local repository.

To build and test, run the following from the root of the project:
```bash
mvn clean install
```

