Metadata-Version: 2.1
Name: zipline-ai-dev
Version: 0.0.1
Summary: Zipline python API library
Home-page: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: thrift

### Zipline Python API


#### Overview

Zipline Python API for materializing configs to be run by the Zipline Engine.


#### Set up for publishing.

Create your `~/.pypirc` file with your credentials for pypi repository.

```
[distutils]
index-servers =
  pypi
  pypitest
  local

[pypi]
username: nalgeon  # replace with your PyPI username

[pypitest]
repository: https://test.pypi.org/legacy/
username: nalgeon  # replace with your TestPyPI username

[local]
repository: <local artifactory repository>
```

Generate the required thrift modules, update the version and run the respective command to publish to the desired
repository:

```
python setup.py sdist upload -r { pypi | pypitest | local }
```


