diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c5548c0 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include src/pypi2nix/*.nix +include src/pypi2nix/VERSION diff --git a/setup.py b/setup.py index 8051a0b..4d27616 100644 --- a/setup.py +++ b/setup.py @@ -26,5 +26,11 @@ 'pypi2nix = pypi2nix.cli:main', ], }, - packages = find_packages('src'), + packages = ['pypi2nix'], + package_dir={'': 'src'}, + include_package_data=True, + install_requires = [ + 'click', + 'requests', + ] )