Skip to content

Commit 844e440

Browse files
authored
Merge pull request #5 from Polygon-io/setup_ci
Add initial CI tooling
2 parents 70dd221 + e29d7a5 commit 844e440

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed

.drone.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
kind: pipeline
3+
type: docker
4+
name: default
5+
6+
platform:
7+
os: linux
8+
arch: amd64
9+
10+
steps:
11+
- name: test
12+
image: python:3.7.5-alpine
13+
commands:
14+
- echo "testing"
15+
16+
trigger:
17+
branch:
18+
- master
19+
event:
20+
- pull_request
21+
22+
...

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://drone.polygon.io/api/badges/Polygon-io/polygon-client-python/status.svg)](https://drone.polygon.io/Polygon-io/polygon-client-python)
2+
13
# A Python client library for Polgyon's WebSocket and RESTful APIs
24

35
Currently this repo only supports the WebSocket API

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="polygon",
5+
version="0.0.1",
6+
description="Polygon API client",
7+
author_email="[email protected]",
8+
url="",
9+
keywords=["Polygon API"],
10+
packages=find_packages(),
11+
include_package_data=True
12+
)

tox.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[tox]
2+
envlist = py3
3+
[testenv]
4+
deps = pytest
5+
commands = pytest

0 commit comments

Comments
 (0)