Skip to content

Commit

Permalink
fix: build env (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored Jun 5, 2020
1 parent c44f364 commit f09b7af
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ __pycache__
.tox
env*
venv
Pipfile*
13 changes: 0 additions & 13 deletions MANIFEST

This file was deleted.

4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include *.txt
include *.md
recursive-include docs *.txt
global-include pydruid *.py
recursive-include docs
recursive-include pydruid
include LICENSE
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import io
import sys
from setuptools import setup
from setuptools import find_packages, setup

install_requires = ["six >= 1.9.0", "requests"]

Expand All @@ -23,7 +23,8 @@
version="0.999.0dev",
author="Druid Developers",
author_email="[email protected]",
packages=["pydruid", "pydruid.db", "pydruid.utils"],
packages=find_packages("pydruid"),
package_dir={"": "pydruid"},
url="https://druid.apache.org",
project_urls={
"Bug Tracker": "https://github.com/druid-io/pydruid/issues",
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[testenv]
setenv =
PYTHONPATH = {toxinidir}
commands =
pytest {posargs}
deps =
Expand Down

0 comments on commit f09b7af

Please sign in to comment.