aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Hinds <lhinds@redhat.com>2017-07-13 08:53:47 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-07-13 08:53:47 +0000
commit22ddce4febafed75bd16785352e105a8fbc1d60c (patch)
treeea79b1ed42f12ccab63358272acd4ac557b1f5bf
parentc71f9c42c28ab919ea187c9f830197645f87e741 (diff)
parentbcefa06d0f54fca17de853decab3a52c2d2b83af (diff)
Merge "Fix issues with installing sdist and wheels"
-rw-r--r--MANIFEST.in4
-rwxr-xr-xsetup.py4
2 files changed, 7 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..e043fed
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,4 @@
+include LICENSE README.md
+include anteater.conf
+include master_list.yaml
+exclude exceptions/*
diff --git a/setup.py b/setup.py
index d392231..c791175 100755
--- a/setup.py
+++ b/setup.py
@@ -7,6 +7,9 @@ from setuptools import setup, find_packages
REQUIRES = [
'docopt',
+ 'six',
+ 'binaryornot',
+ 'PyYAML',
]
@@ -71,7 +74,6 @@ setup(
'Programming Language :: Python :: Implementation :: PyPy'
],
packages=find_packages(),
- py_modules=["anteater"],
entry_points={
'console_scripts': [
"anteater = anteater.main:main"