Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.

Commit aa31ad1

Browse files
committed
Package pypi2nix for pip
1 parent ae53e5d commit aa31ad1

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include src/pypi2nix/*.nix
2+
include src/pypi2nix/VERSION

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,11 @@
2626
'pypi2nix = pypi2nix.cli:main',
2727
],
2828
},
29-
packages = find_packages('src'),
29+
packages = ['pypi2nix'],
30+
package_dir={'': 'src'},
31+
include_package_data=True,
32+
install_requires = [
33+
'click',
34+
'requests',
35+
]
3036
)

0 commit comments

Comments
 (0)