Skip to content
Snippets Groups Projects
Commit c566931b authored by ulif's avatar ulif
Browse files

Merge pull request #2 from conorsch/include-en-wordlist

Include wordlist_en.txt via pip install
parents a9272dbe 9c338ead
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ language: python
python:
- "2.7"
- "3.3"
- "3.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gnupg
......@@ -14,4 +15,7 @@ before_install:
install:
- python setup.py dev
# command to run tests
script: "python setup.py test"
script:
- python setup.py test
# simply running the `diceware` cmd will ensure no errors
- diceware
......@@ -6,4 +6,4 @@ docs = develop easy_install diceware[docs]
[pytest]
addopts = --doctest-modules
--doctest-glob='*.rst'
tests docs README.rst diceware.py
tests docs README.rst diceware.py wordlists/wordlist_en.txt
......@@ -84,5 +84,8 @@ setup(
'console_scripts': [
'diceware = diceware:main',
]
}
},
data_files=[
('wordlists', ['wordlists/wordlist_en.txt']),
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment