1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-09 09:59:51 +01:00

add circle.yml

This commit is contained in:
Viktor Stanchev 2015-08-29 23:14:21 -07:00
parent 17241297f1
commit f04317ca94
4 changed files with 15 additions and 2 deletions

10
circle.yml Normal file
View File

@ -0,0 +1,10 @@
machine:
python:
version: 3.4.2
test:
override:
- coverage run -m unittest discover
post:
- mkdir -p $CIRCLE_ARTIFACTS/coverage
- cd /home/ubuntu/pirate-get && coverage html --include=`pwd`* --omit="*/tests/*,*migrations*,*__init__*"
- cp -R /home/ubuntu/pirate-get/htmlcov/* $CIRCLE_ARTIFACTS/coverage

2
requirements-test.txt Normal file
View File

@ -0,0 +1,2 @@
-r requirements.txt
coverage

0
requirements.txt Normal file
View File

5
setup.py Normal file → Executable file
View File

@ -1,4 +1,5 @@
from setuptools import setup
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='pirate-get',
version='0.2.5',
@ -7,7 +8,7 @@ setup(name='pirate-get',
author='vikstrous',
author_email='me@viktorstanchev.com',
license='GPL',
packages=['pirate'],
packages=find_packages(),
entry_points={
'console_scripts': ['pirate-get = pirate.pirate:main']
},