Skip to content

Commit

Permalink
Merge 22a336d into d96b57a
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatesh-1729 committed Sep 16, 2017
2 parents d96b57a + 22a336d commit 9c91bdb
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 9 deletions.
75 changes: 75 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# using os base image becuase of jdk requirements in pyjinius
version: 2

jobs:

build:
docker:
- image: ubuntu:14.04
working_directory: ~/circulate
steps:
- checkout
- run:
name: Install python pip
command: apt-get update && apt-get install -y python python-setuptools python-pip
- run:
name: Private pypi config setup
command: |
echo "[distutils]" >> ~/.pypirc
echo "index-servers = pypi-private" >> ~/.pypirc
echo "[pypi-private]" >> ~/.pypirc
echo "repository=$PYPI_HOST" >> ~/.pypirc
echo "username=$PYPI_USERNAME" >> ~/.pypirc
echo "password=$PYPI_PASSWORD" >> ~/.pypirc
- run:
name: Pre-install virtual env
command: |
pip install virtualenv --quiet
virtualenv venv
- restore_cache:
key: deps2.7-{{ .Branch }}-{{ checksum "requirements.txt" }}
- run:
name: Install dependencies
command: |
. venv/bin/activate
pip install cython --quiet
pip install coveralls --quiet
pip install -r requirements.txt --extra-index-url $PYPI_HOST --quiet
- save_cache:
key: deps2.7-{{ .Branch }}-{{ checksum "requirements.txt" }}
paths:
- "venv"

test:
working_directory: ~/circulate
docker:
- image: python:2.7-alpine
steps:
- run:
name: Install python pip
command: apt-get update && apt-get install -y python python-setuptools python-pip
- restore_cache:
key: deps2.7-{{ .Branch }}-{{ checksum "requirements.txt" }}
- run:
name: Test
command: |
. venv/bin/activate
coverage run --source=. -m unittest discover -v
coveralls
- run:
name: Push to private pypi server
command: |
python setup.py bdist_wheel upload -r $PYPI_HOST
python setup.py sdist upload -r $PYPI_HOST
- store_artifacts:
path: test-reports/
destination: tr1

workflows:
version: 2
build-and-deploy:
jobs:
- build
- test:
requires:
- build
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ python:
- "2.7"
install:
- pip install -U pip wheel setuptools
- pip install cython
- pip install -r requirements.txt
- pip install .
- pip install coveralls
- pip install coveralls --quiet
- pip install cython --quiet
- pip install -r requirements.txt --extra-index-url $PYPI_HOST --quiet

script: coverage run --source=. -m unittest discover -v

after_success:
coveralls
coveralls
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
recursive-include emoint/resources/ *
recursive-include emoint/resources/ *
include README.md
include requirements.txt
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
--extra-index-url https://seernet-pypi.herokuapp.com/
--extra-index-url $PYPI_HOST
Cython
xgboost
sklearn
pandas
scipy
numpy
jnius
pyjnius
tweetokenize
nltk
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
from setuptools import setup, find_packages
from codecs import open
from os import path
from pip.req import parse_requirements

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

install_reqs = parse_requirements('requirements.txt', session='session')
reqs = [str(ir.req) for ir in install_reqs]

setup(
name='EmoInt',
version='0.1.0',
Expand All @@ -31,7 +35,7 @@
'setuptools>=18.0',
'cython',
],
install_requires=[],
install_requires=reqs,
extras_require={},
package_data={
'emoint': ['resources/*', 'resources/NRC-Hashtag-Sentiment-Lexicon-v0.1/*', 'resources/SentiStrength/*',
Expand Down

0 comments on commit 9c91bdb

Please sign in to comment.