Python setup.py develops stuck in "write dependency_links"

I am trying to run python setup.py developin a package that contains some helper scripts.

The package is structured as follows:

mytools
|--mytools
|--tests
|--notebooks
|--xxx
|--yyy
|--zzz

The file is setup.pyas follows:

from setuptools import setup

setup(
    name='mytools',
    version='0.0.1',
    packages=['mytools'],
)

The launch python setup.py developproduces the following result:

running develop
running egg_info
writing mytools.egg-info/PKG-INFO
writing top-level names to mytools.egg-info/top_level.txt
writing dependency_links to mytools.egg-info/dependency_links.txt

The problem is that the assembly seems to be hanging on the last line. It does a lot of I / O, but I don’t know why? Some of the other folders on the root directory of the package (ie tests, notebooks, xxx, yyy, zzz) contain a lot of small and large files , but I do not know, t want to install script was wondering about them (here packages=['mytools']).

Any suggestions?

Edit:

1) Versions:

Python: 3.5.1
setuptools: 23.0.0

2) , mytools, python setup.py develop , . , .

+4
1

setuptools (. # 249, # 450).

setuptools , , packages, package_data, MANIFEST.in ..

pull # 610 # 764, setuptools==28.5.0 .

+2

All Articles