Skip to content
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.

Commit

Permalink
Rejig
Browse files Browse the repository at this point in the history
  • Loading branch information
duggan committed Nov 7, 2015
1 parent 03432d7 commit 89ad588
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion requirements/base.txt
@@ -1,4 +1,3 @@
python-digitalocean
PyYAML
docopt
requests
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Expand Up @@ -13,11 +13,9 @@
'pontoon.cmd'
]

requires = open("requirements/base.txt").read().split()
requires = open("requirements/base.txt").read().split() + ['python-digitalocean']
dependency_links = open("requirements/links.txt").read().split()

scripts = glob('scripts/pontoon*')

setup(
name='pontoon',
version=__version__,
Expand All @@ -29,7 +27,6 @@
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'pontoon': 'pontoon'},
# scripts=scripts,
entry_points={
"console_scripts": [
"pontoon = pontoon.cmd.pontoon:main",
Expand All @@ -44,8 +41,8 @@
]
},
include_package_data=True,
install_requires=requires,
dependency_links=dependency_links,
install_requires=requires,
license=open('LICENSE').read(),
zip_safe=False,
classifiers=(
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -12,11 +12,11 @@ commands = pip install .
[testenv:lib]
deps = -rrequirements/base.txt
-rrequirements/lib.txt
-rrequirements/links.txt
commands = python setup.py install
py.test --pep8 pontoon
[testenv:cli]
whitelist_externals = bats
deps = -rrequirements/base.txt
commands = python setup.py install
bats --tap test/bats
[testenv:coverage]
Expand Down

0 comments on commit 89ad588

Please sign in to comment.