We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c533a60 commit 1edabfcCopy full SHA for 1edabfc
1 file changed
setup.py
100644
100755
@@ -1,10 +1,11 @@
1
#!/usr/bin/env python
2
3
-from setuptools import setup
+from setuptools import setup, find_packages
4
5
setup(
6
name='pygnore-cli', # pip install
7
version='1.0.0',
8
description='Generate gitignore file using the github ignore template',
9
+ packages=find_packages(where="."),
10
scripts=['pygnore'],
11
)
0 commit comments