fix find_packages
Browse files
setup.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
from setuptools import setup
|
| 2 |
from setuptools.command.install import install
|
| 3 |
|
| 4 |
|
|
@@ -37,7 +37,7 @@ setup(
|
|
| 37 |
long_description=long_description,
|
| 38 |
long_description_content_type="text/markdown",
|
| 39 |
url="https://github.com/andreped/livermask",
|
| 40 |
-
packages=
|
| 41 |
entry_points={
|
| 42 |
'console_scripts': [
|
| 43 |
'livermask = livermask.livermask:main'
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
from setuptools.command.install import install
|
| 3 |
|
| 4 |
|
|
|
|
| 37 |
long_description=long_description,
|
| 38 |
long_description_content_type="text/markdown",
|
| 39 |
url="https://github.com/andreped/livermask",
|
| 40 |
+
packages=find_packages(),
|
| 41 |
entry_points={
|
| 42 |
'console_scripts': [
|
| 43 |
'livermask = livermask.livermask:main'
|