Skip to content

Commit

Permalink
Merge pull request #147 from LanceMaverick/circleci
Browse files Browse the repository at this point in the history
CircleCI use.
  • Loading branch information
LanceMaverick committed Jun 20, 2017
2 parents e49182e + ab48a7d commit f54c9e3
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
dependencies:
override:
- pyenv install 3.5.2 -s
- pyenv install 3.6.0 -s
- pyenv local 3.5.2 3.6.0
- pip3 install tox tox-pyenv nose
- pip3 install -r requirements.txt

test:
override:
- tox
2 changes: 2 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ dependencies:
- GitPython>=2.1.1
- blessings>=1.6
- dill>=0.2.6
- stringcase==1.0.6

13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from distutils.core import setup

config = {
'description': 'A plugin based telegram bot',
'author': 'LanceMaverick,',
'url': 'https://github.com/LanceMaverick/skybeard-2/',
'download_url': 'https://github.com/LanceMaverick/skybeard-2/releases/tag/2.1',
'version': '2.1',
'packages': ['skybeard'],
'name': 'skybeard',
}

setup(**config)
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tox]
envlist = py35,py36

0 comments on commit f54c9e3

Please sign in to comment.