Browse Source

Removendo pandoc das dependências

pull/11/head
Danimar Ribeiro 9 years ago
parent
commit
3b98ddb083
  1. 2
      .travis.yml
  2. 1
      requirements.txt
  3. 3
      setup.py

2
.travis.yml

@ -10,7 +10,7 @@ script: coverage run --source=pytrustnfe setup.py nosetests
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-dev libffi-dev libxml2-dev libxslt1-dev libssl-dev
libxmlsec1-dev python-lxml pandoc
libxmlsec1-dev python-lxml
after_success: coveralls
deploy:
provider: pypi

1
requirements.txt

@ -6,7 +6,6 @@ http://xmlsoft.org/sources/python/libxml2-python-2.6.21.tar.gz
https://github.com/odoo-brazil/pyxmlsec/archive/master.zip
Jinja2
signxml
pypandoc
suds
suds_requests
reportlab

3
setup.py

@ -1,8 +1,7 @@
# coding=utf-8
import pypandoc
from setuptools import setup, find_packages
long_description = pypandoc.convert('README.md', 'rst')
long_description = open('README.md').read()
VERSION = "0.1.9"
setup(

Loading…
Cancel
Save