mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-10 10:04:21 +01:00
add circle.yml
This commit is contained in:
parent
17241297f1
commit
f04317ca94
10
circle.yml
Normal file
10
circle.yml
Normal 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
2
requirements-test.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
-r requirements.txt
|
||||||
|
coverage
|
0
requirements.txt
Normal file
0
requirements.txt
Normal file
5
setup.py
Normal file → Executable file
5
setup.py
Normal file → Executable file
@ -1,4 +1,5 @@
|
|||||||
from setuptools import setup
|
#!/usr/bin/env python3
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(name='pirate-get',
|
setup(name='pirate-get',
|
||||||
version='0.2.5',
|
version='0.2.5',
|
||||||
@ -7,7 +8,7 @@ setup(name='pirate-get',
|
|||||||
author='vikstrous',
|
author='vikstrous',
|
||||||
author_email='me@viktorstanchev.com',
|
author_email='me@viktorstanchev.com',
|
||||||
license='GPL',
|
license='GPL',
|
||||||
packages=['pirate'],
|
packages=find_packages(),
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': ['pirate-get = pirate.pirate:main']
|
'console_scripts': ['pirate-get = pirate.pirate:main']
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user