File tree Expand file tree Collapse file tree 4 files changed +41
-0
lines changed
Expand file tree Collapse file tree 4 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 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+ ...
Original file line number Diff line number Diff line change 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
35Currently this repo only supports the WebSocket API
Original file line number Diff line number Diff line change 1+ from setuptools import setup , find_packages
2+
3+ setup (
4+ name = "polygon" ,
5+ version = "0.0.1" ,
6+ description = "Polygon API client" ,
7+ 8+ url = "" ,
9+ keywords = ["Polygon API" ],
10+ packages = find_packages (),
11+ include_package_data = True
12+ )
Original file line number Diff line number Diff line change 1+ [tox]
2+ envlist = py3
3+ [testenv]
4+ deps = pytest
5+ commands = pytest
You can’t perform that action at this time.
0 commit comments