andreped commited on
Commit
846011c
1 Parent(s): 5129798

fix find_packages

Browse files
Files changed (1) hide show
  1. setup.py +2 -2
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=setuptools.find_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'